Пример #1
0
 public EmailService(E_MailApplicationsManagerContext context, ILogger <EmailService> logger,
                     IEncodeDecodeService encodeDecodeService)
 {
     this.context             = context;
     this.logger              = logger;
     this.encodeDecodeService = encodeDecodeService;
 }
Пример #2
0
 public EmailController(IEmailService service, IConcreteMailService concreteMailService, ISearchService searchService,
                        IEncodeDecodeService encodeDecodeService)
 {
     this.service             = service;
     this.concreteMailService = concreteMailService;
     this.searchService       = searchService;
     this.encodeDecodeService = encodeDecodeService;
 }
Пример #3
0
 public ConcreteMailService(IEncodeDecodeService encodeDecodeService, IMapperService mapper)
 {
     this.encodeDecodeService = encodeDecodeService;
     this.mapper = mapper;
 }
 public LoanController(ILoanService loanService, ISearchService searchService, IEncodeDecodeService encodeDecodeService)
 {
     this.searchService       = searchService;
     this.loanService         = loanService;
     this.encodeDecodeService = encodeDecodeService;
 }
 public LoanService(E_MailApplicationsManagerContext context, IEncodeDecodeService encodeDecodeService)
 {
     this.context             = context;
     this.encodeDecodeService = encodeDecodeService;
 }
Пример #6
0
 /// <summary>
 /// Constructor sets dependent components.
 /// </summary>
 /// <param name="encodeDecodeService">Used to HTML encode text strings.</param>
 public StringService(IEncodeDecodeService encodeDecodeService)
 {
     _encodeDecodeService = encodeDecodeService;
 }