예제 #1
0
 private void btnNuevo_Click(object sender, EventArgs e)
 {
     using (var f = new frmEdicion())
     {
         if (f.ShowDialog() == DialogResult.OK)
         {
             try
             {
                 var a = SucursalesRepository.Insertar(f.Sucursal, f.Numero, f.IdBanco, f.Domicilio, f.Dirección, f.Email, f.Teléfono, f.Web, f.Estado);
                 ConsultarDatos();
                 dgvDatos.SetRow(r => Convert.ToDecimal(r.Cells[0].Value) == a.Id);
             }
             catch (Exception ex)
             {
                 ShowError("Error al intentar grabar los datos: \n" + ex.Message);
             }
         }
     }
 }
예제 #2
0
 private void btnEditar_Click(object sender, EventArgs e)
 {
     Models.Sucursales a = ObtenerSucursalSeleccionado();
     using (var f = new frmEdicion(a))
     {
         if (f.ShowDialog() == DialogResult.OK)
         {
             try
             {
                 int IdEmpresa = Lib.Configuration.IdEmpresa;
                 SucursalesRepository.Actualizar(a.Id, IdEmpresa, f.Sucursal, f.Numero, f.IdBanco, f.Domicilio, f.Dirección,
                                                 f.Email, f.Teléfono, f.Web, f.Estado);
                 ConsultarDatos();
                 dgvDatos.SetRow(r => Convert.ToDecimal(r.Cells[0].Value) == a.Id);
             }
             catch (Exception ex)
             {
                 ShowError("Error al intentar grabar los datos: \n" + ex.Message);
             }
         }
     }
 }