HienThiBaoCao() public method

public HienThiBaoCao ( DataSet ip_ds, decimal ip_dc_thang, decimal ip_dc_nam ) : void
ip_ds System.Data.DataSet
ip_dc_thang decimal
ip_dc_nam decimal
return void
        private void load_data_2_grid()
        {
            CHRMCommon.make_stt(m_adv_tong_hop);

            DataSet v_ds = new DataSet();
            v_ds.Tables.Add(new DataTable());

            US_RPT_THONG_TIN_TONG_HOP_V2 v_us = new US_RPT_THONG_TIN_TONG_HOP_V2();
            v_us.HienThiBaoCao(v_ds, lay_thang(), lay_nam());
            m_grc_tong_hop.DataSource = v_ds.Tables[0];
            m_grc_tong_hop.RefreshDataSource();
            m_lbl_thang.Text = "Dữ liệu tháng " + lay_thang().ToString() + "/" + lay_nam().ToString();
        }