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

LayDanhSachTatCaNhanVienTongHopThongTin() public method

public LayDanhSachTatCaNhanVienTongHopThongTin ( 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 LayDanhSachTatCaNhanVienTongHopThongTin(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_tong_hop_nhan_vien_GetAll");
            v_sp.addDecimalInputParam("@THANG", ip_thang);
            v_sp.addDecimalInputParam("@NAM", ip_nam);
            v_sp.fillDataSetByCommand(this, op_ds);
        }