DisplayForPresent() private method

private DisplayForPresent ( decimal v_id_nhan_vien, string m_txt_nam ) : void
v_id_nhan_vien decimal
m_txt_nam string
return void
 private void DoRowDoubleClick(GridView view, Point pt)
 {
     DevExpress.XtraGrid.Views.Grid.ViewInfo.GridHitInfo info = view.CalcHitInfo(pt);
     if (info.InRow || info.InRowCell)
     {
         DataRow v_dr_grv = m_adv_tong_hop.GetDataRow(m_adv_tong_hop.FocusedRowHandle);
         decimal v_id_nhan_vien = CIPConvert.ToDecimal(v_dr_grv["ID_NHAN_VIEN"].ToString());
         f491_rpt_bao_cao_tong_hop_thu_nhap_theo_nam_detail v_f = new f491_rpt_bao_cao_tong_hop_thu_nhap_theo_nam_detail();
         v_f.DisplayForPresent(v_id_nhan_vien, m_txt_nam.Text);
     }
 }