// It inserts a new ingredient public void InsertIngredient() { IngredientCAD ing = new IngredientCAD(); ing.InsertIngredient(this); }
// Modify the description of an ingredient public void ModifyDescription(string description) { IngredientCAD ing = new IngredientCAD(); ing.ModifyDescription(this, description); }
// Deletes the ingredient that is passed by parameter public void DeleteIngredient() { IngredientCAD ing = new IngredientCAD(); ing.DeleteIngredient(this); }