BKI_DichVuMatDat.US.US_RPT_THONG_TIN_TONG_HOP.Get_tat_ca_nhan_vien_can_tong_hop_thong_tin C# (CSharp) Method

Get_tat_ca_nhan_vien_can_tong_hop_thong_tin() public method

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

Usage Example

 private DS_RPT_THONG_TIN_TONG_HOP lay_danh_sach_nhan_vien_can_tong_hop_thong_tin()
 {
     US_RPT_THONG_TIN_TONG_HOP v_us = new US_RPT_THONG_TIN_TONG_HOP();
         DS_RPT_THONG_TIN_TONG_HOP v_ds = new DS_RPT_THONG_TIN_TONG_HOP();
         v_us.Get_tat_ca_nhan_vien_can_tong_hop_thong_tin(v_ds, CIPConvert.ToDecimal(m_txt_thang.Text.Trim()), CIPConvert.ToDecimal(m_txt_nam.Text.Trim()));
         return v_ds;
 }