Exemple #1
0
 public bool InsertarProducto(Producto p)
 {
     if (ProductoCD.Existe("" + p.Nombre))
     {
         return(true);
     }
     else
     {
         ProductoCD.Create(p);
         return(false);
     }
 }
Exemple #2
0
 public bool existeProveedor(string id)
 {
     return(ProductoCD.Existe(id));
 }