コード例 #1
0
ファイル: SupportSearchFlow.cs プロジェクト: SoftSuite/ABB
        public static DataTable  GetSupportSearch(string WHLoid, string RqCode, string DateFrom, string DateTo, string Customer, string StatusFrom)
        {

            DataTable dt = new DataTable();
            V_SUPPORT_LIST_DAL oDAL = new V_SUPPORT_LIST_DAL();
            dt = oDAL.GetSupportSearch(WHLoid.ToString(), RqCode.ToString(), DateFrom.ToString(), DateTo.ToString(), Customer.ToString(), StatusFrom.ToString());
            return dt;
        }