public SearchPersonViewComponent(SCRUDContext dbContext)
		{
			_dbContext = dbContext;
			this.rep = new Repository_Person(dbContext, controllerContext: this);
		}
Example #2
0
		public SelectLists(SCRUDContext context)
		{
			_context = context;
		}
Example #3
0
 public SelectLists(SCRUDContext context)
 {
     _context = context;
 }
Example #4
0
 public Repository_Person(SCRUDContext db, IControllerContext controllerContext)
 {
     _db = db;
     _controllerContext = controllerContext;
 }
Example #5
0
		public Repository_Person(SCRUDContext db, IControllerContext controllerContext)
		{
			_db = db;
			_controllerContext = controllerContext;
		}
Example #6
0
		public PeopleController(SCRUDContext context)
        {
            _context = context;
			_db = new Repository_Person(context, this);
        }