Ejemplo n.º 1
0
 public StudentController(ks54AISContext _context)
 {
     //this.context = _context;
     studentRepository = new StudentRepository(_context);
     groupRepository   = new GroupRepository(_context);
     excelHelper       = new ExcelHelper(_context);
 }
Ejemplo n.º 2
0
 public RoadMapController(ks54AISContext _context)
 {
     //this.context = _context;
     roadMapRepository = new RoadMapRepository(_context);
     groupRepository   = new GroupRepository(_context);
     //excelHelper = new ExcelHelper(_context);
 }
Ejemplo n.º 3
0
 public ExcelHelper(ks54AISContext context = null)
 {
     if (context != null)
     {
         groupRepository  = new GroupRepository(context);
         genderRepository = new GenderRepository(context);
     }
 }
Ejemplo n.º 4
0
 public GenderRepository(ks54AISContext _context)
 {
     context = _context;
 }
Ejemplo n.º 5
0
 public StatementRepository(ks54AISContext _context)
 {
     this.context = _context;
 }
Ejemplo n.º 6
0
 public StudentRepository(ks54AISContext _context)
 {
     context = _context;
 }
Ejemplo n.º 7
0
 public RoadMapRepository(ks54AISContext _context)
 {
     this.context = _context;
 }
 public AttestationStudentRepository(ks54AISContext _context)
 {
     context = _context;
 }
Ejemplo n.º 9
0
 public UserController(ks54AISContext _context)
 {
     userRepository = new UserRepository(_context);
 }
Ejemplo n.º 10
0
 public GroupRepository(ks54AISContext _context)
 {
     context = _context;
 }