示例#1
0
 public async Task <AsycudaDocumentSetEntryDataDetails> CreateAsycudaDocumentSetEntryDataDetails(AsycudaDocumentSetEntryDataDetails entity)
 {
     try
     {
         using (var t = new AsycudaDocumentSetEntryDataDetailsClient())
         {
             return(new AsycudaDocumentSetEntryDataDetails(await t.CreateAsycudaDocumentSetEntryDataDetails(entity.DTO).ConfigureAwait(continueOnCapturedContext: false)));
         }
     }
     catch (FaultException <ValidationFault> e)
     {
         throw new Exception(e.Detail.Message, e.InnerException);
     }
     catch (Exception)
     {
         Debugger.Break();
         throw;
     }
 }