public static void DeleteProducto(int productoId) { if (productoId <= 0) { throw new ArgumentException("El productoId no puede ser menor o igual que cero"); } ProductoDSTableAdapters.ProductoTableAdapter adapter = new ProductoDSTableAdapters.ProductoTableAdapter(); adapter.Delete(productoId); }