示例#1
0
 private void BtnEliminar_Click(object sender, EventArgs e)
 {
     if (PlanLogic.isDeleteValid(Convert.ToInt32(this.dgvPlanes.SelectedRows[0].Cells[0].Value)))
     {
         int ID = ((Business.Entities.Plan) this.dgvPlanes.SelectedRows[0].DataBoundItem).ID;
         new PlanLogic().Delete(ID);
         this.Listar();
     }
     else
     {
         BusinessLogic.Notificar("Plan", "Este plan esta vinculado con una materia o una comision", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }