public ActionResult <IList <Ingredient> > GetIngredients()
        {
            IList <Ingredient> ingredients = dao.GetAllIngredients();

            // Return 200 OK
            return(Ok(ingredients));
        }