Exemplo n.º 1
0
 public VenueViewModel(IDataService dataService, INavigationService navigationService, IModalDialogService dialogService) : base(dataService, navigationService)
 {
     _dialogService = dialogService;
 }
Exemplo n.º 2
0
 public GamePlayerViewModel(IDataService dataService, INavigationService navigationService, IModalDialogService dialogService) : base(dataService, navigationService)
 {
     _dialogService   = dialogService;
     PropertyChanged += GamePlayerViewModel_PropertyChanged;
 }
Exemplo n.º 3
0
 public MyViewModelBase(IDataService dataService, INavigationService navigationService)
 {
     DataService       = dataService;
     NavigationService = navigationService;
 }
Exemplo n.º 4
0
 protected ValidatableViewModelBase(IDataService dataService, INavigationService navigationService) : base(dataService, navigationService)
 {
 }