protected NotificationController(IEmailService emailService,
                                  IPlainTextContentRenderer plainTextContentRenderer, IHtmlContentRenderer viewRenderer)
 {
     this._emailService             = emailService;
     this._plainTextContentRenderer = plainTextContentRenderer;
     this._viewRenderer             = viewRenderer;
 }
Пример #2
0
 public ContactNotificationController(IEmailService emailService
                                      , IConfiguration configuration, IPlainTextContentRenderer plainTextContentRenderer
                                      , IHtmlContentRenderer viewRenderer) : base(emailService, plainTextContentRenderer
                                                                                  , viewRenderer)
 {
 }
 public AlertNotificationController(IEmailService emailService
                                    , IPlainTextContentRenderer plainTextContentRenderer
                                    , IHtmlContentRenderer viewRenderer) : base(emailService, plainTextContentRenderer
                                                                                , viewRenderer)
 {
 }