public void Edit()
        {
            string id = BaseInterfaceLogic.GetDataGridViewEntityId(this.grdRole, BaseRoleEntity.FieldId);
            FrmOrganizeRoleEdit FrmOrganizeRoleEdit = new FrmOrganizeRoleEdit(id);

            if (FrmOrganizeRoleEdit.ShowDialog(this) == DialogResult.OK)
            {
                // 获得岗位列表
                this.GetRoleList();
            }
        }
 public void Edit()
 {
     string id = BaseInterfaceLogic.GetDataGridViewEntityId(this.grdRole, BaseRoleEntity.FieldId);
     FrmOrganizeRoleEdit FrmOrganizeRoleEdit = new FrmOrganizeRoleEdit(id);
     if (FrmOrganizeRoleEdit.ShowDialog(this) == DialogResult.OK)
     {
         // 获得岗位列表
         this.GetRoleList();
     }
 }