示例#1
0
    private void GetData(string strITEM, string strPERIOD)
    {
        ParameterList.Clear();
        ParameterList.Add(strITEM);
        ParameterList.Add(strPERIOD);

        ITM07_BCO BCO = new ITM07_BCO(ConntionDB);

        DataTable dtResult = null;

        dtResult = BCO.QueryByDetail(ParameterList);
        Session["ITM072_" + PageTimeStamp.Value] = dtResult;

    }
示例#2
0
    private DataTable GetChanData(string strITEM, string strPERIOD)
    {
        ParameterList.Clear();
        ParameterList.Add(strITEM);
        ParameterList.Add(strPERIOD);

        ITM07_BCO BCO = new ITM07_BCO(ConntionDB);

        DataTable dtResult = null;

        dtResult = BCO.QueryByDetail(ParameterList);
        return dtResult;

    }