public SendPushNotificationCommandHandler(IRepository repository, ICloudMessagingService messagingService)
 {
     this.repository       = repository;
     this.messagingService = messagingService;
 }
 public SendMorningAlertNotificationCommandHandler(ICloudMessagingService messagingService)
 {
     this.messagingService = messagingService;
 }
Exemplo n.º 3
0
 public SendReminderToInactiveDeviceCommandHandler(ICloudMessagingService messaging)
 {
     this.messaging = messaging;
 }