コード例 #1
0
 void deleteOldPrice(string productId, SqlTransaction tran)
 {
     try
     {
         priceDT.DeleteViaCond(CatProductPriceContract.Columns[(int)CatProductPriceColumns.ProductID] + " = " + productId, tran);
     }
     catch (Exception e)
     { throw e; }
 }