Example #1
0
 public ApplicantsController(IApplicantService applicantService, ICountryLookupService countryLookupService, ILogger <ApplicantsController> logger)
 {
     this._applicantService     = applicantService;
     this._countryLookupService = countryLookupService;
     this._logger = logger;
     _logger.LogInformation("Entering ApplicantsController constructor");
 }
 public ConfirmationReportReportService(ITradeService tradeService, ICountryLookupService countryLookupService, IReportTemplateService reportTemplateService, IReportRenderService reportRenderService,
                                        ILogger <ConfirmationReportReportService> logger)
 {
     this.tradeService          = tradeService;
     this.countryLookupService  = countryLookupService;
     this.reportTemplateService = reportTemplateService;
     this.reportRenderService   = reportRenderService;
     this.logger = logger;
 }