Beispiel #1
0
        //查询工具功能测试
        public DataTable toolFunctionTestQuery(String orderId)
        {
            ToolFunctionTestDB toolFunctionTestDb = new ToolFunctionTestDB();
            DataSet            ds = toolFunctionTestDb.toolFunctionTestQuery(orderId);

            if (ds.Tables[0].Rows.Count > 0)
            {
                return(ds.Tables[0]);
            }
            else
            {
                return(null);
            }
        }