コード例 #1
0
        //private string projectRootFolder;

        public ConvertViewToPDF(IConverter converter, IViewRenderService viewRender, IHostingEnvironment env, ISMTPService emailSender)
        {
            _converter          = converter;
            _viewRender         = viewRender;
            _hostingEnvironment = env;
            _emailSender        = emailSender;
        }
コード例 #2
0
 public BranchOfficesController(ApplicationUserManager userManager,
                                IUnitOfWork unitOfWork,
                                ISMTPService SMTPService)
 {
     UserManager      = userManager;
     this.unitOfWork  = unitOfWork;
     this.SMTPService = SMTPService;
 }
コード例 #3
0
 public AccountController(ApplicationUserManager userManager,
                          ISecureDataFormat <AuthenticationTicket> accessTokenFormat,
                          IUnitOfWork unitOfWork,
                          ISMTPService SMTPService)
 {
     UserManager       = userManager;
     AccessTokenFormat = accessTokenFormat;
     this.unitOfWork   = unitOfWork;
     this.SMTPService  = SMTPService;
 }
コード例 #4
0
 public MQMailHandler(ISMTPService smtpService)
 {
     this.SMTPService = smtpService;
 }
コード例 #5
0
 public MailSrv(IMailRepository mailRepository, IConfiguration configuration, ISMTPService sMTPService)
 {
     _mailRepository = mailRepository;
     _configuration  = configuration;
     _sMTPService    = sMTPService;
 }
コード例 #6
0
 public OpsNotificationController(ISMTPService smtpService) : base(smtpService)
 {
 }
コード例 #7
0
 public ReportersController(IUnitOfWork unitOfWork, IUsersService usersService, ISMTPService smtpService)
 {
     this.unitOfWork   = unitOfWork;
     this.smtpService  = smtpService;
     this.usersService = usersService;
 }
コード例 #8
0
 public BaseMessageController(ISMTPService smtpService)
 {
     this.SMTPService = smtpService;
 }
コード例 #9
0
 public SMTPController(ISMTPService service, OctoplusContext context, IAuditoriaService auditoria)
 {
     _auditoria = auditoria;
     _context   = context;
     _service   = service;
 }
コード例 #10
0
 public TestController(ISMTPService iSMTPService)
 {
     this.iSMTPService = iSMTPService;
 }