public CommentAddedToRemarkHandler(IHandler handler,
                                    IRemarkSubscribersService subscribersService,
                                    INotificationService notificationService)
 {
     _handler             = handler;
     _subscribersService  = subscribersService;
     _notificationService = notificationService;
 }
Example #2
0
 public RemarkActionCanceledHandler(IHandler handler,
                                    IRemarkSubscribersService subscribersService,
                                    IRemarkServiceClient remarkServiceClient)
 {
     _handler             = handler;
     _subscribersService  = subscribersService;
     _remarkServiceClient = remarkServiceClient;
 }
 public RemarkResolvedHandler(IHandler handler,
                              IRemarkSubscribersService subscribersService,
                              INotificationService notificationService)
 {
     _handler             = handler;
     _subscribersService  = subscribersService;
     _notificationService = notificationService;
 }
 public FavoriteRemarkDeletedHandler(IHandler handler,
                                     IRemarkSubscribersService subscribersService,
                                     IRemarkServiceClient remarkServiceClient)
 {
     _handler             = handler;
     _subscribersService  = subscribersService;
     _remarkServiceClient = remarkServiceClient;
 }
Example #5
0
 public PhotosToRemarkAddedHandler(IHandler handler,
                                   IRemarkSubscribersService subscribersService,
                                   INotificationService notificationService)
 {
     _handler             = handler;
     _subscribersService  = subscribersService;
     _notificationService = notificationService;
 }
 public NotificationService(IRemarkServiceClient remarkServiceClient,
                            IRemarkSubscribersService subscribersService,
                            IUserNotificationSettingsService userNotificationSettingsService,
                            IEmailMessageService emailService)
 {
     _remarkServiceClient             = remarkServiceClient;
     _subscribersService              = subscribersService;
     _userNotificationSettingsService = userNotificationSettingsService;
     _emailService = emailService;
 }
 public RemarkActionTakenHandler(IHandler handler,
                                 IRemarkSubscribersService subscribersService)
 {
     _handler            = handler;
     _subscribersService = subscribersService;
 }
Example #8
0
 public RemarkDeletedHandler(IHandler handler,
                             IRemarkSubscribersService subscribersService)
 {
     _handler            = handler;
     _subscribersService = subscribersService;
 }
 public FavoriteRemarkAddedHandler(IHandler handler,
                                   IRemarkSubscribersService subscribersService)
 {
     _handler            = handler;
     _subscribersService = subscribersService;
 }