Пример #1
0
        //copy constructor

        public clsSalesOrder(clsSalesOrder otherItem)
        {
            this.SalesOrderID  = otherItem.SalesOrderID;
            this.InventoryID   = otherItem.InventoryID;
            this.CustomerID    = otherItem.CustomerID;
            this.finalPrice    = otherItem.finalPrice;
            this.saleDate      = otherItem.saleDate;
            this.pickUpDate    = otherItem.pickUpDate;
            this.SalespersonID = otherItem.SalespersonID;
            this.status        = otherItem.status;
        }
Пример #2
0
 public static void insertSalesOrder(clsSalesOrder newSalesOrder)
 {
 }
Пример #3
0
        public static clsSalesOrder searchSalesOrder(string salesOrderID)
        {
            clsSalesOrder searchedSO = new clsSalesOrder();

            return(searchedSO);
        }