Example #1
0
 public NamesController(CrecheContext db)
 {
     _db = db;
 }
 public DetailModel(CrecheContext db)
 {
     _db = db;
 }
Example #3
0
 public ViewApplicantModel(CrecheContext db)
 {
     _db = db;
 }
Example #4
0
 public ThankYouModel(CrecheContext db)
 {
     _db = db;
 }
 public DeleteApplicantModel(CrecheContext db)
 {
     applicant = new Applicant();
     _db       = db;
 }
Example #6
0
 public Student_Information_FormModel(CrecheContext db)
 {
     _db = db;
 }
 public ValueDetailsModel(CrecheContext db)
 {
     _db = db;
 }
Example #8
0
 public IndexModel(CrecheContext db)
 {
     _db = db;
 }
 public ViewModel(CrecheContext db)
 {
     _db = db;
 }
 public DeleteModel(CrecheContext db)
 {
     _db = db;
 }
 public CrecheController(CrecheContext context)
 {
     _context = context;
 }
Example #12
0
 public SearchModel(CrecheContext db)
 {
     _db = db;
 }
Example #13
0
 public AddModel(CrecheContext db)
 {
     _db = db;
 }
 public StudentDetailsModel(CrecheContext db)
 {
     _db = db;
 }
Example #15
0
 public EditPageModel(CrecheContext db)
 {
     _db = db;
 }
Example #16
0
 public ListStudentsModel(CrecheContext db)
 {
     _db = db;
 }
Example #17
0
 public CrecheModel(CrecheContext db)
 {
     _db = db;
 }
 public ListApplicantsModel(CrecheContext db)
 {
     _db = db;
 }
Example #19
0
 public ApplicantController(CrecheContext context)
 {
     _context = context;
 }
Example #20
0
 //adds applicant to database
 public CrecheApplicationModel(CrecheContext db)
 {
     Applicant = new Applicant();
     _db       = db;
 }