public PubCreaViewModel(INavigationService navigationService)
 {
     _navigationService = navigationService;
     dataAccess = new DataAccess();
     getCatsAndProvs();
     OffersChecked = true;
 }
 public IdentificationViewModel(INavigationService navigationService)
 {
     _navigationService = navigationService;
     dataAccess = new DataAccess();
 }
 public PubModViewModel(INavigationService navigationService)
 {
     _navigationService = navigationService;
     dataAccess = new DataAccess();
     getCatsAndProvs();
 }
 public AccManViewModel(INavigationService navigationService)
 {
     _navigationService = navigationService;
     dataAccess = new DataAccess();
 }
        public AccCreaViewModel(INavigationService navigationService)
        {
            _navigationService = navigationService;
            dataAccess = new DataAccess();
            initVilles();

        }
 public MainViewModel(INavigationService navigationService)
 {
     Globals.currentUserId = -1;
     _navigationService = navigationService;
     dataAccess = new DataAccess();
     getCatsAndProvs();
     OffersChecked = true;
     DemandsChecked = true;
     SelectedCategory = "(All)";
     SelectedProvince = "(All)";
 }