public RequestForCertificateOfDistraintOfPropertyService(NRZContext context,
                                                          IEPaymentService ePaymentService,
                                                          IStringLocalizer <SharedResources> localizer = null)
     : base(context, localizer)
 {
     _ePaymentService = ePaymentService;
 }
Ejemplo n.º 2
0
        public EPaymentController(UserManager <ApplicationUser> userManager,
                                  IStringLocalizer <SharedResources> localizer,
                                  IEPaymentService ePaymentService

                                  )
            : base(userManager, localizer)
        {
            _ePaymentService = ePaymentService;
        }
Ejemplo n.º 3
0
 public EPaymentJobService(NRZContext context,
                           IEPaymentService ePaymentService,
                           IOptions <EPaymentSettings> config,
                           IStringLocalizer <SharedResources> localizer = null)
     : base(context, localizer)
 {
     _ePaymentService = ePaymentService;
     _settings        = config.Value;
 }
Ejemplo n.º 4
0
 public IntegrationController(IIntegrationService integrationService,
                              ITimestampService timestampService,
                              IEPaymentService paymentService,
                              IEPaymentJobService paymentJobService)
 {
     this.integrationService = integrationService;
     this.timestampService   = timestampService;
     this.paymentService     = paymentService;
     this.paymentJobService  = paymentJobService;
 }
Ejemplo n.º 5
0
 public SeizedPropertyAvailabilityRequestService(NRZContext context,
                                                 IEPaymentService ePaymentService,
                                                 IStringLocalizer <SharedResources> localizer) : base(context, localizer)
 {
     _ePaymentService = ePaymentService;
 }