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