Пример #1
0
 public async Task ApproveDocument(int id, string appover)
 {
     try
     {
         await _documentRepository.ApproveDocument(id, appover).ConfigureAwait(false);
     }
     catch (Exception e)
     {
         throw;
     }
 }