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