예제 #1
0
 public FirstViewModel(IInteractiveAlerts alerts, IMvxNavigationService navigationService) : base(navigationService)
 {
     _alerts = alerts;
     _ctorCount++;
 }
예제 #2
0
 public AlertService(IInteractiveAlerts interactiveAlerts)
 {
     _interactiveAlerts = interactiveAlerts;
 }
예제 #3
0
 public SampleViewModel()
 {
     this.interactiveAlerts = InteractiveAlerts.Instance;
     this.PopulateItems();
 }