public IActionResult Get()
 {
     try
     {
         return(Ok(DocumentManipulation.GetAllDocuments()));
     }
     catch (Exception ex)
     {
         Logger.LogError(ex.Message);
         throw new NSIException(ex.Message, DC.Exceptions.Enums.Level.Error, DC.Exceptions.Enums.ErrorType.InvalidParameter);
     }
 }
예제 #2
0
파일: DocumentTests.cs 프로젝트: adkl/nsi
 public void GetAllDocuments_Success()
 {
     _documentManipulation.GetAllDocuments();
 }