public IEnumerable <Ingredient> Get() { return(_repo.Get()); }
public ActionResult <List <Ingredient> > Get() => _ingredientsRepository.Get();