3 tier
NEW FOLDER (newtier) userBO using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BussinessObject { public class UserBO { private int _Roll; private string _Name; public int Roll { get { return _Roll; } ...