예제 #1
0
 public async Task <IList <RecipeListModel> > RecipesGetAsync(string culture)
 {
     return(await recipeClient.RecipeGetAsync("3", culture));
 }
예제 #2
0
 public async Task <ObservableCollection <RecipeListModel> > GetRecipesAsync()
 {
     return(await recipeClient.RecipeGetAsync(apiVersion, culture));
 }
예제 #3
0
 public async Task <IList <RecipeListModel> > GetAllAsync()
 {
     return((await _recipeClient.RecipeGetAsync("3", "cs")).ToList());
 }