BKI_DichVuMatDat.BaoCao.f471_bao_cao_qua_trinh_cong_tac.find_ma_nv C# (CSharp) Method

find_ma_nv() private method

private find_ma_nv ( decimal v ) : string
v decimal
return string
        private string find_ma_nv(decimal v)
        {
            try
            {
                DS_V_DM_NHAN_VIEN v_ds = new DS_V_DM_NHAN_VIEN();
                US_V_DM_NHAN_VIEN v_us = new US_V_DM_NHAN_VIEN();
                v_us.FillDataset(v_ds, "WHERE ID = " + v);
                return v_us.strMA_NV;
            }
            catch (Exception v_e)
            {
                CSystemLog_301.ExceptionHandle(v_e);
                return null;
            }
        }