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