コード例 #1
0
ファイル: TestService.cs プロジェクト: XorgX304/Hitek.GSU
 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);
 }
コード例 #2
0
 public TestHistoryService(IWorkTestRepository testRepositpry, ITestService testService)
 {
     this.testRepository = testRepositpry;
     this.testService    = testService;
 }
コード例 #3
0
 public WorkTestAnswerController(IWorkTestRepository workTestRep, IAccountService accountService)
 {
     this.workTestRep    = workTestRep;
     this.accountService = accountService;
 }