Ejemplo n.º 1
0
 public StudentModel(SchoolContext context)
 {
     _context   = context;
     studentDal = new EFStudentDal(_context);
     student    = new StudentManager(studentDal);
 }
Ejemplo n.º 2
0
 public CrudTesting()
 {
     _context    = new DesignTimeDbContextFactory().CreateDbContext(null);
     _studentDal = new EFStudentDal(_context);
     _student    = new StudentManager(_studentDal);
 }