public async Task <IActionResult> GetIngedientsByType(string type) { var ingredients = await _ingredientServices.GetIngedientsByTypeAsync(type); return(Json(ingredients)); }