public SeizedPropertyAvailabilityRequestController( ISeizedPropertyAvailabilityRequestService service, IEmailService emailService, IOptions <EPaymentSettings> config) { _service = service; _emailService = emailService; _settings = config.Value; }
public EPaymentJobService(NRZContext context, IEPaymentService ePaymentService, IOptions <EPaymentSettings> config, IStringLocalizer <SharedResources> localizer = null) : base(context, localizer) { _ePaymentService = ePaymentService; _settings = config.Value; }
public RequestForCertificateOfDistraintOfPropertyController( IRequestForCertificateOfDistraintOfPropertyService requestForCertificateOfDistraintOfPropertyService, IEmailService emailService, IOptions <EPaymentSettings> config, UserManager <ApplicationUser> userManager, IStringLocalizer <SharedResources> localizer ) : base(userManager, localizer) { _requestForCertificateOfDistraintOfPropertyService = requestForCertificateOfDistraintOfPropertyService; _emailService = emailService; _settings = config.Value; }