Esempio n. 1
0
 public async Task <FileContentResult> GetFileByUuidAsync(Guid uuid)
 {
     return(await _fileLogic.Find(uuid));
 }
Esempio n. 2
0
 public void FindFileNotFoundExceptionTest()
 {
     Assert.ThrowsAsync <FileNotFoundException>(() => _fileLogic.Find(Guid.Empty));
 }