public AccountService(IMapper mapper, IJwtAuthenticationManager jwtAuthenticationManager, ILogger <AccountService> logger, IMailService mailService, IFraudClaimRepository fraudClaimRepository, IRepositoryFactory repositoryFactory) { _mapper = mapper; _jwtAuthenticationManager = jwtAuthenticationManager; _logger = logger; _mailService = mailService; _fraudClaimRepository = fraudClaimRepository; _repositoryFactory = repositoryFactory; }
public InsurerService(IFraudClaimRepository fraudClaimRepository) { _fraudClaimRepository = fraudClaimRepository; }
public WebScrapingController(IWebScrapingService webScrapingService, IFraudClaimRepository fraudClaimRepository) { _webScrapingService = webScrapingService; _fraudClaimRepository = fraudClaimRepository; }