public CompanyService(NRZContext context,
                       IStringLocalizer <SharedResources> localizer,
                       IIntegrationService integrationService)
     : base(context, localizer)
 {
     _integrationService = integrationService;
 }
Example #2
0
 public EmailService(NRZContext context,
                     IOptions <EmailSettings> emailConfig,
                     IStringLocalizer <SharedResources> localizer = null)
     : base(context, localizer)
 {
     emailSettings = emailConfig.Value;
 }
 public RequestForCertificateOfDistraintOfPropertyService(NRZContext context,
                                                          IEPaymentService ePaymentService,
                                                          IStringLocalizer <SharedResources> localizer = null)
     : base(context, localizer)
 {
     _ePaymentService = ePaymentService;
 }
Example #4
0
 public EPaymentJobService(NRZContext context,
                           IEPaymentService ePaymentService,
                           IOptions <EPaymentSettings> config,
                           IStringLocalizer <SharedResources> localizer = null)
     : base(context, localizer)
 {
     _ePaymentService = ePaymentService;
     _settings        = config.Value;
 }
 public PersonService(NRZContext context,
                      IStringLocalizer <SharedResources> localizer,
                      IAddressService addressService,
                      IIntegrationService integrationService)
     : base(context, localizer)
 {
     _addressService     = addressService;
     _integrationService = integrationService;
 }
Example #6
0
 public IntegrationService(NRZContext context,
                           IOptions <RegiXCertificateSettings> regixSettings,
                           IOptions <IntegrationSettings> integrationSettings,
                           IStringLocalizer <SharedResources> localizer = null)
     : base(context, localizer)
 {
     _regixCertificateSettings = regixSettings.Value;
     _integrationSettings      = integrationSettings.Value;
 }
 public DistraintService(NRZContext context,
                         IPropertyService propertyService,
                         IPersonService personService,
                         ICompanyService companyService,
                         IStringLocalizer <SharedResources> localizer = null)
     : base(context, localizer)
 {
     _propertyService = propertyService;
     _personService   = personService;
     _companyService  = companyService;
 }
 public void SetContext(NRZContext context)
 {
     _context = context;
 }
 protected BaseService(NRZContext context,
                       IStringLocalizer <SharedResources> localizer)
 {
     _context   = context;
     _localizer = localizer;
 }
Example #10
0
 public NomenclatureService(NRZContext context,
                            IStringLocalizer <SharedResources> localizer = null)
     : base(context, localizer)
 {
 }
Example #11
0
 public AddressService(NRZContext context,
                       IStringLocalizer <SharedResources> localizer)
     : base(context, localizer)
 {
 }
Example #12
0
 public AgriculturalMachineryService(NRZContext context, IStringLocalizer <SharedResources> localizer) : base(context, localizer)
 {
 }
 public TimestampService(NRZContext context,
                         IStringLocalizer <SharedResources> localizer)
     : base(context, localizer)
 {
 }
 public AnnouncementsService(NRZContext context)
     : base(context, null)
 {
 }
Example #15
0
 public SeizedPropertyAvailabilityRequestService(NRZContext context,
                                                 IEPaymentService ePaymentService,
                                                 IStringLocalizer <SharedResources> localizer) : base(context, localizer)
 {
     _ePaymentService = ePaymentService;
 }
Example #16
0
 public AuctionRegisterService(NRZContext context)
     : base(context, null)
 {
 }
 public AuctionService(NRZContext context)
     : base(context, null)
 {
 }