/// <summary>
 /// Bulks the update process set status.
 /// </summary>
 /// <param name="documentConversionLogBeos">The document conversion log beos.</param>
 private void BulkUpdateProcessSetStatus(IList <DocumentConversionLogBeo> documentConversionLogBeos)
 {
     try
     {
         if (!documentConversionLogBeos.Any())
         {
             return;
         }
         documentVaultMngr.BulkUpdateConversionLogs(matterId, documentConversionLogBeos);
     }
     catch (Exception exception)
     {
         //continue the production process with out updating the conversion /process status
         exception.Trace().Swallow();
     }
 }
Beispiel #2
0
 /// <summary>
 /// Bulks the update process set status.
 /// </summary>
 /// <param name="documentConversionLogBeos">The document conversion log beos.</param>
 private void BulkUpdateProcessSetStatus(IList <DocumentConversionLogBeo> documentConversionLogBeos)
 {
     try
     {
         using (var transScope = new EVTransactionScope(TransactionScopeOption.Required))
         {
             if (!documentConversionLogBeos.Any())
             {
                 return;
             }
             documentVaultMngr.BulkUpdateConversionLogs(_matterId, documentConversionLogBeos);
             transScope.Complete();
         }
     }
     catch (Exception exception)
     {
         //continue the production process with out updating the conversion /process status
         exception.Trace().Swallow();
     }
 }