Exemplo n.º 1
0
 public LibraryVolunteeringEnquiryService(
     IVerintServiceGateway verintServiceGateway,
     IMailingServiceGateway mailingServiceGateway,
     IOptions <VerintConfiguration> verintConfiguration)
 {
     _verintServiceGateway  = verintServiceGateway;
     _mailingServiceGateway = mailingServiceGateway;
     _verintConfiguration   = verintConfiguration.Value;
 }
Exemplo n.º 2
0
 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;
 }
Exemplo n.º 4
0
 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;
 }
Exemplo n.º 8
0
 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;
 }
Exemplo n.º 10
0
 public CaseService(IVerintServiceGateway verintServiceGateway, ICaseHelper casehelper, ILogger <CaseService> logger)
 {
     _verintServiceGateway = verintServiceGateway;
     _caseHelper           = casehelper;
     _logger = logger;
 }
Exemplo n.º 11
0
 public ApplicationService(IVerintServiceGateway verintServiceGateway, ILogger <ApplicationService> logger)
 {
     _verintServiceGateway = verintServiceGateway;
     _logger = logger;
 }
Exemplo n.º 12
0
 public CRMStreetProvider(IVerintServiceGateway verintServiceGateway) => _verintServiceGateway = verintServiceGateway;
Exemplo n.º 13
0
 public CRMAddressProvider(IVerintServiceGateway verintServiceGateway) => _verintServiceGateway = verintServiceGateway;
Exemplo n.º 14
0
 public StreetHelper(IVerintServiceGateway verintServiceGateway)
 {
     _verintServiceGateway = verintServiceGateway;
 }
 public ParkingDispensationService(IVerintServiceGateway verintServiceGateway
                                   , IMailHelper mailHelper)
 {
     _VerintServiceGateway = verintServiceGateway;
     _mailHelper           = mailHelper;
 }
Exemplo n.º 16
0
 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;
Exemplo n.º 19
0
 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;
 }