Exemplo n.º 1
0
 public ContactSTARTService(
     IVerintServiceGateway _verintServiceGateway,
     IMailingServiceGateway _mailingServiceGateway,
     IOptions <VerintConfiguration> _verintConfiguration)
 {
     verintServiceGateway  = _verintServiceGateway;
     mailingServiceGateway = _mailingServiceGateway;
     verintConfiguration   = _verintConfiguration.Value;
 }
Exemplo n.º 2
0
 public LibraryVolunteeringEnquiryService(
     IVerintServiceGateway verintServiceGateway,
     IMailingServiceGateway mailingServiceGateway,
     IOptions <VerintConfiguration> verintConfiguration)
 {
     _verintServiceGateway  = verintServiceGateway;
     _mailingServiceGateway = mailingServiceGateway;
     _verintConfiguration   = verintConfiguration.Value;
 }
 public ComplaintsService(
     IVerintServiceGateway verintServiceGateway,
     IOptions <ComplaintsListConfiguration> complaintsConfig,
     IMailingServiceGateway mailingServiceGateway,
     ILogger <ComplaintsService> logger)
 {
     _verintServiceGateway  = verintServiceGateway;
     _complaintsConfig      = complaintsConfig;
     _mailingServiceGateway = mailingServiceGateway;
     _logger = logger;
 }
 public MailHelper(IMailingServiceGateway mailingServiceGateway,
                   ILogger <MailHelper> logger)
 {
     _mailingServiceGateway = mailingServiceGateway;
     _logger = logger;
 }
 public MailHelper(IMailingServiceGateway mailingServiceGateway)
 {
     _mailingServiceGateway = mailingServiceGateway;
 }