Ejemplo n.º 1
0
    public DataTable queryData()
    {
        ResultMsgLabel.Text = "";
        BCO.QuerySalesSumByStore bco = new BCO.QuerySalesSumByStore(ConntionDB);

        ArrayList aList = this.getParameterList();

        DataTable Dt = null;
        if (this.RadioType2.Checked == true)
        {
            Dt = bco.QueryByALO(aList);
        }
        else if (this.RadioType1.Checked == true)
        {
            Dt = bco.QueryByTemplate(aList);
        }
        return Dt;
    }