/// <inheritdoc/> public async Task <RecipeDto> GetAsync(long id) { return(await _http.GetAsync <RecipeDto>($"api/recipes/{id}")); }
/// <inheritdoc/> public async Task <IList <TagDto> > GetAllForRecipeAsync(long recipeId) { return(await _http.GetAsync <IList <TagDto> >($"api/recipes/{recipeId}/tags")); }
/// <inheritdoc /> public async Task <IEnumerable <FoodDto> > GetAll() { return(await _http.GetAsync <IEnumerable <FoodDto> >($"api/food")); }