Ejemplo n.º 1
0
 public TestService(ITestRepository testRepositpry, IAccountService accountService, IWorkTestRepository workTestRepository)
 {
     this.testRepository     = testRepositpry;
     this.accountService     = accountService;
     this.workTestRepository = workTestRepository;
     this.random             = new Random((int)DateTime.Now.Ticks);
 }
Ejemplo n.º 2
0
 public TestHistoryService(IWorkTestRepository testRepositpry, ITestService testService)
 {
     this.testRepository = testRepositpry;
     this.testService    = testService;
 }
Ejemplo n.º 3
0
 public WorkTestAnswerController(IWorkTestRepository workTestRep, IAccountService accountService)
 {
     this.workTestRep    = workTestRep;
     this.accountService = accountService;
 }