public CompanyService(NRZContext context, IStringLocalizer <SharedResources> localizer, IIntegrationService integrationService) : base(context, localizer) { _integrationService = integrationService; }
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; }
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; }
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; }
public NomenclatureService(NRZContext context, IStringLocalizer <SharedResources> localizer = null) : base(context, localizer) { }
public AddressService(NRZContext context, IStringLocalizer <SharedResources> localizer) : base(context, localizer) { }
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) { }
public SeizedPropertyAvailabilityRequestService(NRZContext context, IEPaymentService ePaymentService, IStringLocalizer <SharedResources> localizer) : base(context, localizer) { _ePaymentService = ePaymentService; }
public AuctionRegisterService(NRZContext context) : base(context, null) { }
public AuctionService(NRZContext context) : base(context, null) { }