예제 #1
0
 public ProblemTypeService(IProblemTypeRepository typeRepository)
 {
     _typeRepository = typeRepository;
 }
 public ProblemService(IProblemRepository problemRepository, IProblemTypeRepository problemTypeRepository)
 {
     _problemRepository     = problemRepository;
     _problemTypeRepository = problemTypeRepository;
 }
예제 #3
0
 public ProblemTypesHelper(IProblemTypeRepository repository)
 {
     this._repository = repository;
 }