//private SourdoughRecipeViewModel srViewModel;

        //public SourdoughRecipeViewModel SrViewModel
        //{
        //    get { return srViewModel; }
        //    set
        //    {
        //        srViewModel = value;
        //        RaisePropertyChanged();
        //    }
        //}
        

     


        public SourdoughRecipeView()
        {
            this.InitializeComponent();
            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += navigationHelper_LoadState;
            this.navigationHelper.SaveState += navigationHelper_SaveState;
        }
 public RecipesView()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += navigationHelper_LoadState;
 }
 protected PageBase()
 {
     _navigationHelper = new NavigationHelper(this);
     _navigationHelper.LoadState += NavigationHelperLoadState;
     _navigationHelper.SaveState += NavigationHelperSaveState;
 }