BKI_DichVuMatDat.US.US_GD_THU_NHAP_KHAC.FillDatasetTheoQuyThangNam C# (CSharp) Method

FillDatasetTheoQuyThangNam() public method

public FillDatasetTheoQuyThangNam ( DS_GD_THU_NHAP_KHAC v_ds, string ip_id_quy_tnk, string ip_thang, string ip_nam ) : void
v_ds DS_GD_THU_NHAP_KHAC
ip_id_quy_tnk string
ip_thang string
ip_nam string
return void
        public void FillDatasetTheoQuyThangNam(DS_GD_THU_NHAP_KHAC v_ds, string ip_id_quy_tnk, string ip_thang, string ip_nam)
        {
            CStoredProc v_cstore = new CStoredProc("pr_TNK_thu_nhap_getTheoDK");
            v_cstore.addDecimalInputParam("@thang", ip_thang);
            v_cstore.addDecimalInputParam("@nam", ip_nam);
            v_cstore.addDecimalInputParam("@id_quy_tnk", ip_id_quy_tnk);
            v_cstore.fillDataSetByCommand(this, v_ds);
        }