Example #1
0
 private void delete_dm_tu_dien(int i_int_row_index)
 {
     try
     {
         decimal v_dc_id_dm_tu_dien = CIPConvert.ToDecimal(m_grv_dm_tu_dien.DataKeys[i_int_row_index].Value);
         m_us_dm_tu_dien.DeleteByID(v_dc_id_dm_tu_dien);
         load_data_2_grid();
         m_lbl_mess.Text = "Xóa bản ghi thành công.";
     }
     catch (Exception v_e)
     {
         m_lbl_mess.Text = "Lỗi trong quá trình xóa bản ghi.";
         throw v_e;
     }
 }