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