Beispiel #1
0
 public int InsertProductInfo(Products product)
 {
     try
     {
         using (ProductGateway productGateway = new ProductGateway())
         {
             actionResult = productGateway.InsertProductInfo(product);
         }
     }
     catch (Exception ex)
     {
     }
     return(actionResult);
 }