public AlertJobsController(IAlertJobService alertJobService)
 {
     this.alertJobService = alertJobService;
 }
Example #2
0
 public AlerterEmailSendStatusCheckedEventHandler(IAlertJobService alertJobService, IAlertNotifierService alertNotifierService, UserManager <IdentityUser> userManager)
 {
     this.alertJobService      = alertJobService;
     this.alertNotifierService = alertNotifierService;
     this.userManager          = userManager;
 }
Example #3
0
 public AlertJobUpdateStatusCheckedEventHandler(IAlertJobService alertJobService, IHubContext <AlertHub> hubContext)
 {
     this.alertJobService = alertJobService;
     this.hubContext      = hubContext;
 }