/// <summary> /// Function to Update the items /// </summary> public void EditFunction() { try { RoleInfo infoRole = new RoleInfo(); RoleSP spRole = new RoleSP(); infoRole.RoleId = Convert.ToDecimal(dgvRole.CurrentRow.Cells["dgvtxtRoleId"].Value); infoRole.Role = txtRole.Text.Trim(); infoRole.Narration = txtNarration.Text.Trim(); infoRole.Extra1 = string.Empty; infoRole.Extra2 = string.Empty; string strRole = txtRole.Text.Trim(); if (spRole.RoleCheckExistence(decRoleId, strRole) == false) { spRole.RoleEdit(infoRole); Messages.UpdatedMessage(); ClearFunction(); } else { Messages.InformationMessage("Role already exists"); txtRole.Focus(); } } catch (Exception ex) { MessageBox.Show("RL:4" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
/// <summary> /// Function to Update values in Role Table /// </summary> /// <param name="infoRole"></param> public void RoleEdit(RoleInfo infoRole) { try { spRole.RoleEdit(infoRole); } catch (Exception ex) { MessageBox.Show("RL4:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information); } }