예제 #1
0
 public StudentService(IUnitOfWork uow, IStudentRepository studentRepository, IAccountRepository accountRepository, IGenericRepository <Rol> rolRepository, IResultaatRepository resultaatRepository)
 {
     this.uow = uow;
     this.studentRepository   = studentRepository;
     this.accountRepository   = accountRepository;
     this.rolRepository       = rolRepository;
     this.resultaatRepository = resultaatRepository;
 }
 public BeoordelingsService(IUnitOfWork uow,
                            IMatrixRepository matrixRepository,
                            IResultaatRepository resultaatRepository,
                            IBeoordelingsEngine beoordelingsEngine,
                            IGenericRepository <Rol> rolRepository,
                            IStudentService studentService,
                            IAdministratorService adminService)
 {
     this.uow = uow;
     this.matrixRepository    = matrixRepository;
     this.resultaatRepository = resultaatRepository;
     this.beoordelingsEngine  = beoordelingsEngine;
     this.rolRepository       = rolRepository;
     this.studentService      = studentService;
     this.adminService        = adminService;
 }