Ejemplo n.º 1
0
 public string BorrarProducto()
 {
     try
     {
         string mensajeBorre = SELECCIONADA.IDCODIGO + " " + SELECCIONADA.DESCRIPCION;
         bbdd.BorrarProducto(SELECCIONADA);
         PRODUCTOS = bbdd.ObtenerProductos(false, false);
         return(mensajeBorre);
     }
     catch (Exception e)
     {
         throw new MisExcepciones(e.Message);
     }
 }