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