BKI_DichVuMatDat.US.US_RPT_THONG_TIN_TONG_HOP_V2.LayDanhSachNhanVienChuaDuocTongHopThongTin C# (CSharp) Method

LayDanhSachNhanVienChuaDuocTongHopThongTin() public method

public LayDanhSachNhanVienChuaDuocTongHopThongTin ( DS_RPT_THONG_TIN_TONG_HOP_V2 op_ds, decimal ip_thang, decimal ip_nam ) : void
op_ds DS_RPT_THONG_TIN_TONG_HOP_V2
ip_thang decimal
ip_nam decimal
return void
        public void LayDanhSachNhanVienChuaDuocTongHopThongTin(DS_RPT_THONG_TIN_TONG_HOP_V2 op_ds, decimal ip_thang, decimal ip_nam)
        {
            op_ds.EnforceConstraints = false;
            CStoredProc v_sp = new CStoredProc("pr_TL_thong_tin_nhan_vien_chua_tong_hop_GetAll");
            v_sp.addDecimalInputParam("@THANG", ip_thang);
            v_sp.addDecimalInputParam("@NAM", ip_nam);
            v_sp.fillDataSetByCommand(this, op_ds);
        }