Esempio n. 1
0
 public DetailFavoriteViewModel(ILocalDbService localFavService, ILocalShopListService localShopListService)
 {
     this._localFavService      = localFavService;
     this._localShopListService = localShopListService;
 }
Esempio n. 2
0
 public TabShopListViewModel(ILocalShopListService localShopListService, IMvxNavigationService navigationService)
 {
     this._navigationService    = navigationService;
     this._localShopListService = localShopListService;
     GetShopList();
 }
Esempio n. 3
0
 public DetailJuiceListViewModel(IRecipeService recipeService, ILocalDbService localDbService, ILocalShopListService localShopListService)
 {
     this._recipeService        = recipeService;
     this._localDbService       = localDbService;
     this._localShopListService = localShopListService;
 }