public ActionResult PutInRecipe([FromBody] UsedIngredientsDTO ingredientDto)
        {
            if (IngredientsDAO.UpdateInRecipe(ingredientDto))
            {
                return(Ok());
            }

            return(BadRequest());
        }