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

LayDuLieuThuNhapKhacTheoIDQuy() public method

public LayDuLieuThuNhapKhacTheoIDQuy ( DataSet ip_ds, decimal ip_dc_id_quy_tien_thuong ) : void
ip_ds System.Data.DataSet
ip_dc_id_quy_tien_thuong decimal
return void
        public void LayDuLieuThuNhapKhacTheoIDQuy(DataSet ip_ds, decimal ip_dc_id_quy_tien_thuong)
        {
            CStoredProc v_sp = new CStoredProc("pr_TNK_thu_nhap_khac_getTheoIdQuy");
            v_sp.addDecimalInputParam("@ip_dc_id_quy", ip_dc_id_quy_tien_thuong);

            v_sp.fillDataSetByCommand(this, ip_ds);
        }

Usage Example

 private bool check_quy_tien_dang_su_dung_yn(decimal id_quy_tnk)
 {
     US_GD_THU_NHAP_KHAC v_us_gd_tnk = new US_GD_THU_NHAP_KHAC();
     DS_GD_THU_NHAP_KHAC v_ds_gd_tnk = new DS_GD_THU_NHAP_KHAC();
     v_us_gd_tnk.LayDuLieuThuNhapKhacTheoIDQuy(v_ds_gd_tnk, id_quy_tnk);
     if (v_ds_gd_tnk.Tables[0].Rows.Count != 0)
         return true;
     else return false;
 }
All Usage Examples Of BKI_DichVuMatDat.US.US_GD_THU_NHAP_KHAC::LayDuLieuThuNhapKhacTheoIDQuy