Example #1
0
        public ReturnValue getInvoice(int orderId, WComm.Transaction _transcation)
        {
            string      Usp_SQL = String.Format(WComm.SqlDefine.getSQL("getInvoice"), orderId);
            ReturnValue _result = this.getEntity(Usp_SQL, _transcation);

            return(_result);
        }
Example #2
0
        public virtual ReturnValue updateOrderPhontomOrderStatus(int orderId, DateTime shippeddate, string trackingNumber, WComm.Transaction transcation)
        {
            string      Usp_SQL = String.Format(WComm.SqlDefine.getSQL("updateOrderPhontomOrderStatus"), orderId, shippeddate, trackingNumber);
            ReturnValue _result = this.ExecSql(Usp_SQL, transcation);

            return(_result);
        }