コード例 #1
0
 public UserService(
     IRoleRepository roleRepository,
     IQuestionTypeRepository questionTypeRepository,
     ITestingAreaRepository testingAreaRepository
     )
 {
     this.roleRepository = roleRepository;
     this.questionTypeRepository = questionTypeRepository;
     this.testingAreaRepository = testingAreaRepository;
 }
コード例 #2
0
 public TestingAreaService(ITestingAreaRepository testingAreaRepository)
 {
     this.testingAreaRepository = testingAreaRepository;
 }