Example #1
0
        public Ingredient GetIngredient(long ID)
        {
            IngredientDAL userdal = new IngredientDAL();

            return(userdal.GetIngredient(ID));
        }
Example #2
0
        public Ingredient GetIngredient(long idproduct, long Idrecipe)
        {
            IngredientDAL userdal = new IngredientDAL();

            return(userdal.GetIngredient(idproduct, Idrecipe));
        }