public Boolean AgregarDetalleProducto(Entidad producto) { try { bool respuesta = FabricaComando.CrearComandoAgregarDetalleProducto(producto).Ejecutar(); return(respuesta); } catch (Exception) { _vista.SetFalla("Error al agregar el producto"); return(false); } }