BKI_DichVuMatDat.US.US_GD_CONG_TAC.FillDatasetBaoCaoTangGiamLaoDong C# (CSharp) Method

FillDatasetBaoCaoTangGiamLaoDong() public method

public FillDatasetBaoCaoTangGiamLaoDong ( DataSet op_ds, System.DateTime ip_dat_tu_ngay, System.DateTime ip_dat_den_ngay ) : void
op_ds System.Data.DataSet
ip_dat_tu_ngay System.DateTime
ip_dat_den_ngay System.DateTime
return void
        public void FillDatasetBaoCaoTangGiamLaoDong(DataSet op_ds, DateTime ip_dat_tu_ngay, DateTime ip_dat_den_ngay)
        {
            CStoredProc v_cstore = new CStoredProc("pr_rpt_tang_giam_lao_dong");
            v_cstore.addDatetimeInputParam("@ip_dat_tu_ngay", ip_dat_tu_ngay);
            v_cstore.addDatetimeInputParam("@ip_dat_den_ngay", ip_dat_den_ngay);
            v_cstore.fillDataSetByCommand(this, op_ds);
        }