Beispiel #1
0
 //Insertra productos
 public static string InsertProductos(string nombreProducto, decimal precioUnit, int categoria)
 {
     Productos proc = new Productos();
     proc.NombreProducto = nombreProducto;
     proc.PrecioUnit = precioUnit;
     proc.CatProducto = categoria;
     return proc.InsertarProductos(proc);
 }