private void button3_Click(object sender, EventArgs e)
 {
     if (tbNombre.Text != "" && tbTipo.Text != "" && tbFecha.Text != "")
     {
         servicio = new ServicioCEN();
         servicio.Destroy(OID);
         Dame_Todos();
         Limpiar();
     }
     else
     {
         MessageBox.Show("Tienes que editar el servicio");
     }
 }
 private void button1_Click(object sender, EventArgs e)
 {
     if (tbNombre.Text != "" && tbTipo.Text != "" && tbFecha.Text != "")
     {
         servicio = new ServicioCEN();
         servicio.Nuevo_servicio(tbNombre.Text, tbTipo.Text, tbFecha.Text);
         Dame_Todos();
         Limpiar();
     }
     else
     {
         MessageBox.Show("Falta algún dato");
     }
 }
 private void button2_Click(object sender, EventArgs e)
 {
     if (tbTipo.Text != "" && tbNombre.Text != "" && tbFecha.Text != "")
     {
         servicio = new ServicioCEN();
         i = dataGridView1.CurrentCell.RowIndex;
         OID = int.Parse(dataGridView1.Rows[i].Cells[0].Value.ToString());
         servicio.Modify(OID, tbNombre.Text, tbTipo.Text, tbFecha.Text);
         Dame_Todos();
         Limpiar();
     }
     else
     {
         MessageBox.Show("Tienes que editar el servicio");
     }
 }