public static orderFromSupplierDetailTable AddOrderFromSupllier(string name, string type, int amount, int price, supplierTable selectedSupplier, string notes)
        {
            orderFromSupplierDetailTable ofsdt = DataLayer.AddOrderFromSupplier(name, type, amount, price, selectedSupplier, notes);

            return(ofsdt);
        }