public LibraryVolunteeringEnquiryService( IVerintServiceGateway verintServiceGateway, IMailingServiceGateway mailingServiceGateway, IOptions <VerintConfiguration> verintConfiguration) { _verintServiceGateway = verintServiceGateway; _mailingServiceGateway = mailingServiceGateway; _verintConfiguration = verintConfiguration.Value; }
public ContactSTARTService( IVerintServiceGateway _verintServiceGateway, IMailingServiceGateway _mailingServiceGateway, IOptions <VerintConfiguration> _verintConfiguration) { verintServiceGateway = _verintServiceGateway; mailingServiceGateway = _mailingServiceGateway; verintConfiguration = _verintConfiguration.Value; }
public DroppedKerbService(IVerintServiceGateway verintServiceGateway, IMailHelper mailHelper, IOptions <VerintOptions> verintOptions, IOptions <ConfirmIntegrationFormOptions> VOFConfiguration) { _verintServiceGateway = verintServiceGateway; _mailHelper = mailHelper; _verintOptions = verintOptions.Value; _VOFConfiguration = VOFConfiguration.Value; }
public ParkingEnforcementService(IVerintServiceGateway verintServiceGateway , IConfiguration iConfig , ILogger <ParkingEnforcementService> logger , IMailHelper mailHelper) { _VerintServiceGateway = verintServiceGateway; configuration = iConfig; _logger = logger; _mailHelper = mailHelper; }
public ComplaintsService( IVerintServiceGateway verintServiceGateway, IOptions <ComplaintsListConfiguration> complaintsConfig, IMailingServiceGateway mailingServiceGateway, ILogger <ComplaintsService> logger) { _verintServiceGateway = verintServiceGateway; _complaintsConfig = complaintsConfig; _mailingServiceGateway = mailingServiceGateway; _logger = logger; }
public BridgesStructuresService(IVerintServiceGateway verintServiceGateway , IConfiguration iConfig , ILogger <BridgesStructuresService> logger , IOptions <BridgesStructuresListConfiguration> bridgesStructuresConfig , IMailHelper mailHelper) { _VerintServiceGateway = verintServiceGateway; _configuration = iConfig; _logger = logger; _bridgesStructuresConfig = bridgesStructuresConfig; _mailHelper = mailHelper; }
public ParkingPermitsService( IDistributedCache distributedCache, IVerintServiceGateway verintServiceGateway, IMailHelper mailHelper, ILogger <ParkingPermitsService> logger, IPermitHelper permitHelper) { _distributedCache = distributedCache; _verintServiceGateway = verintServiceGateway; _mailHelper = mailHelper; _logger = logger; _permitHelper = permitHelper; }
public FloodingService(IVerintServiceGateway verintServiceGateway, IMailHelper mailHelper, IOptions <VerintOptions> verintOptions, IOptions <ConfirmAttributeFormOptions> confirmAttributeFormOptions, IStreetHelper streetHelper, IGateway gateway, ILogger <FloodingService> logger) { _verintServiceGateway = verintServiceGateway; _mailHelper = mailHelper; _verintOptions = verintOptions; _confirmAttributeFormOptions = confirmAttributeFormOptions; _streetHelper = streetHelper; _gateway = gateway; _logger = logger; }
public VerintStreetProvider(IVerintServiceGateway verintServiceGateway) { _verintServiceGateway = verintServiceGateway; }
public CaseService(IVerintServiceGateway verintServiceGateway, ICaseHelper casehelper, ILogger <CaseService> logger) { _verintServiceGateway = verintServiceGateway; _caseHelper = casehelper; _logger = logger; }
public ApplicationService(IVerintServiceGateway verintServiceGateway, ILogger <ApplicationService> logger) { _verintServiceGateway = verintServiceGateway; _logger = logger; }
public CRMStreetProvider(IVerintServiceGateway verintServiceGateway) => _verintServiceGateway = verintServiceGateway;
public CRMAddressProvider(IVerintServiceGateway verintServiceGateway) => _verintServiceGateway = verintServiceGateway;
public StreetHelper(IVerintServiceGateway verintServiceGateway) { _verintServiceGateway = verintServiceGateway; }
public ParkingDispensationService(IVerintServiceGateway verintServiceGateway , IMailHelper mailHelper) { _VerintServiceGateway = verintServiceGateway; _mailHelper = mailHelper; }
public ComplimentsService(IVerintServiceGateway verintServiceGateway, IOptions <ComplimentsListConfiguration> complimentsConfig) { _verintServiceGateway = verintServiceGateway; _complimentsConfig = complimentsConfig; }
public PermitHelper(IVerintServiceGateway verintServiceGateway, IConfiguration configuration) { _configuration = configuration; _verintServiceGateway = verintServiceGateway; }
public CRMOrganisationProvider(IVerintServiceGateway verintServiceGateway) => _verintServiceGateway = verintServiceGateway;
public AccessProtectionService(IVerintServiceGateway verintServiceGateway) { _VerintServiceGateway = verintServiceGateway; }
public HomeVisitService(IVerintServiceGateway verintServiceGateway, ILogger <HomeVisitService> logger) { _verintServiceGateway = verintServiceGateway; _logger = logger; }
public FeedbackService(IVerintServiceGateway verintServiceGateway, IOptions <FeedbackListConfiguration> feedbackConfig) { _verintServiceGateway = verintServiceGateway; _feedbackConfig = feedbackConfig; }