Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 2
0
 public InsurerService(IFraudClaimRepository fraudClaimRepository)
 {
     _fraudClaimRepository = fraudClaimRepository;
 }
 public WebScrapingController(IWebScrapingService webScrapingService, IFraudClaimRepository fraudClaimRepository)
 {
     _webScrapingService   = webScrapingService;
     _fraudClaimRepository = fraudClaimRepository;
 }