public DisciplineDb()
 {
     rep = AppKernel.Get <IDisciplineRepository>();
 }
 public TransactionsController()
     : base()
 {
     transactionService = AppKernel.Get <ITransactionService>();
 }
Example #3
0
 public StudentDb()
 {
     rep = AppKernel.Get <IStudentRepository>();
 }
Example #4
0
 public EducationDb()
 {
     rep = AppKernel.Get <IEducationRepository>();
 }
Example #5
0
 public LabWorkDb()
 {
     rep = AppKernel.Get <ILabWorkRepository>();
 }
Example #6
0
 public GroupDb()
 {
     rep = AppKernel.Get <IGroupRepository>();
 }