Пример #1
0
 private void CargarProductoId(int id)
 {
     try
     {
         var operador = _ProductoRepo.GetOperadorById(id);
         SetProducto(operador);
     }
     catch (Exception)
     {
         MessageBox.Show("Error al modificar operador.");
         Close();
     }
 }