Ejemplo n.º 1
0
 public async Task <ICollection <IngredientListModel> > GetIngredientsAsync()
 {
     return(await ingredientClient.IngredientGetAsync(apiVersion, culture));
 }
Ejemplo n.º 2
0
 public async Task <IList <IngredientListModel> > GetAllAsync()
 {
     return((await _ingredientClient.IngredientGetAsync("3", "cs")).ToList());
 }
Ejemplo n.º 3
0
 public async Task <IList <IngredientListModel> > IngredientsGetAsync(string culture)
 {
     return(await ingredientClient.IngredientGetAsync(apiVersion, culture));
 }