Esempio n. 1
0
 public virtual void ProductCopyProperty(int?sourceProductSysNo, int?targetProductSysNo, bool canOverrite, string companyCode, string languageCode, UserInfo operationUser)
 {
     using (var tran = new TransactionScope())
     {
         _productProcessor.ProductCopyProperty(sourceProductSysNo, targetProductSysNo, canOverrite, companyCode, languageCode, operationUser);
         tran.Complete();
     }
 }