Exemplo n.º 1
0
        public ReturnValue getProgramProductList()
        {
            string      Usp_SQL = String.Format(SqlDefine.getSQL("getProgramProductList"));
            ReturnValue _result = this.getEntityList(Usp_SQL);

            return(_result);
        }
Exemplo n.º 2
0
        public ReturnValue getOrderShipStation(int OrderID)
        {
            string      Usp_SQL = String.Format(SqlDefine.getSQL("getOrderShipStation"), OrderID);
            ReturnValue _result = this.getEntity(Usp_SQL);

            return(_result);
        }
Exemplo n.º 3
0
        public ReturnValue getlOrderNeedMarked()
        {
            string      Usp_SQL = String.Format(SqlDefine.getSQL("getOrderNeedMarked"));
            ReturnValue _result = this.getEntityList(Usp_SQL);

            return(_result);
        }
Exemplo n.º 4
0
 public ReturnValue getOrderID_GeneratorByProgramId(int id)
 {
     string Usp_SQL = String.Format(SqlDefine.getSQL("getNextOrderId"), id);
     ReturnValue _result = this.getEntity(Usp_SQL);
     return _result;
 }