Beispiel #1
0
        public static orderDetailsTable AddCostumerOrder(int discount, int amount, string notes, int active, string name,
                                                         string type, string typeOfTree, string color, string shoeing, int cost, int costPrice,
                                                         CostumersTable selectedCostumer)
        {
            orderDetailsTable odt = DataLayer.AddCostumerOrder(discount, amount, notes, active, name, type, typeOfTree, color, shoeing, cost,
                                                               costPrice, selectedCostumer);

            return(odt);
        }