Exemple #1
0
 public GetNotificationProfileListQueryHandler(INotificationProfileService service, IGearContext context)
 {
     _service = service;
     _context = context;
 }
Exemple #2
0
 public UpdateNotificationProfileCommandHandler(INotificationProfileService service)
 {
     _service = service;
 }
Exemple #3
0
 public GetNotificationProfileDetailQueryHandler(INotificationProfileService notificationProfileService, IGearContext context, IEventService eventService)
 {
     _notificationProfileService = notificationProfileService;
     _context      = context;
     _eventService = eventService;
 }
Exemple #4
0
 public AssignUserNotificationProfileCommandHandler(INotificationProfileService service)
 {
     _service = service;
 }