Example #1
0
 public MainViewModel(IScheduledNotificationService scheduledNotificationService,
                      IShareService shareService, IModalScreenService popupService)
 {
     _scheduledNotificationService = scheduledNotificationService;
     _shareService = shareService;
     _popupService = popupService;
 }
Example #2
0
 public ScheduledNotificationsController(IScheduledNotificationService service)
 {
     _service = service;
 }
 public ScheduledNotificationController(IScheduledNotificationService scheduledNotificationService)
 {
     _scheduledNotificationService = scheduledNotificationService;
 }