public BaseTestService(
     IBaseTestRepository baseTestRepository,
     IMapper mapper,
     StringHasher stringHasher)
 {
     this._baseTestRepository = baseTestRepository;
     this._mapper             = mapper;
     this._stringHasher       = stringHasher;
 }
Example #2
0
 public AdminService(
     IAdminRepository adminRepository,
     IBaseTestRepository baseTestRepository,
     IMapper mapper, StringHasher stringHasher)
 {
     _adminRepository    = adminRepository;
     _baseTestRepository = baseTestRepository;
     _mapper             = mapper;
     _stringHasher       = stringHasher;
 }
Example #3
0
 public TestService(
     ITestRepository testRepository,
     IUserTestAnswersRepository testAnswerRepository,
     IMapper mapper,
     StringHasher stringHasher)
 {
     this._testRepository       = testRepository;
     this._testAnswerRepository = testAnswerRepository;
     this._mapper       = mapper;
     this._stringHasher = stringHasher;
 }