Ejemplo n.º 1
0
 public MainViewModel(INavigationService navigation = null)
 {
     _navSvc  = navigation;
     Students = new ObservableCollection <Student>(AllStudents.GetAllStudents());
     Debug.WriteLine("Exec view");
 }
Ejemplo n.º 2
0
 public MainPageViewModel(INavigationService navigationService)
 {
     Students           = new ObservableCollection <Student>(AllStudents.GetAllStudents());
     _navigationService = navigationService;
 }