Exemple #1
0
        public Recipe(string pName, string pType)
        {
            ProductDocumationAccess p = new ProductDocumationAccess();

            IList = p.GetIngredients(pName);
            CalculateUse(p.GetAmoughtIngredients(pType));
        }
        public void GetSizeCost(string pType)
        {
            ProductDocumationAccess p = new ProductDocumationAccess();

            sizeCost = p.GetProductSizeCost(pType);
        }