private void tslAgregar_Click(object sender, EventArgs e)
        {
            frmObrasSocialesAE frm = new frmObrasSocialesAE(this);

            frm.Text = "Nueva Obra social";
            DialogResult dr = frm.ShowDialog(this);

            if (dr == DialogResult.OK)
            {
                try
                {
                    ObraSocial obraSocial = frm.GetObraSocial();
                    if (!_servicio.Existe(obraSocial))
                    {
                        _servicio.Guardar(obraSocial);
                        DataGridViewRow r = ConstruirFila();
                        SetearFila(r, obraSocial);
                        AñadirFila(r);
                        MessageBox.Show("Registro Agregado");
                    }
                    else
                    {
                        MessageBox.Show("Obra social repetida");
                    }
                }
                catch (Exception exception)
                {
                    MessageBox.Show(exception.Message);
                }
            }
        }
 private void tslEditar_Click(object sender, EventArgs e)
 {
     if (dgvDatos.SelectedRows.Count > 0)
     {
         DataGridViewRow r          = dgvDatos.SelectedRows[0];
         ObraSocial      obraSocial = (ObraSocial)r.Tag;
         obraSocial = _servicio.GetObraSocialPorId(obraSocial.ObraSocialId);
         frmObrasSocialesAE frm = new frmObrasSocialesAE();
         frm.Text = "Editar Obra social";
         frm.SetObraSocial(obraSocial);
         DialogResult dr = frm.ShowDialog(this);
         if (dr == DialogResult.OK)
         {
             try
             {
                 obraSocial = frm.GetObraSocial();
                 if (!_servicio.Existe(obraSocial))
                 {
                     _servicio.Guardar(obraSocial);
                     SetearFila(r, obraSocial);
                     MessageBox.Show("Registro Editado");
                 }
                 else
                 {
                     MessageBox.Show("Obra social Repetida");
                 }
             }
             catch (Exception exception)
             {
                 MessageBox.Show(exception.Message);
             }
         }
     }
 }