예제 #1
0
        public EmailParserController(IHtmlService htmlService,
                                     UserManager <User> userManager,
                                     IHtmlNotification htmlNotification,
                                     ITelegramService telegramService,
                                     ApplicationContext context)
        {
            this._userManager = userManager;

            this._htmlService = htmlService;

            htmlService.CreateHtmlNotification(htmlNotification);

            this._context = context;

            this._htmlNotification = htmlNotification;

            this._telegramService = telegramService;
        }
예제 #2
0
 void IHtmlService.CreateHtmlNotification(IHtmlNotification htmlNotification)
 {
     this._htmlNotification = htmlNotification;
 }