Exemple #1
0
 public static void DeleteProducto(int ProductoId)
 {
     try
     {
         ProductoDSTableAdapters.ProductoTableAdapter localAdapter = new ProductoDSTableAdapters.ProductoTableAdapter();
         localAdapter.DeleteProducto(ProductoId);
     }
     catch (Exception q)
     {
         throw new ArgumentException(q.Message, q);
     }
 }