Beispiel #1
0
 public async Task <StorageFile> GetImage(string fileName)
 {
     try
     {
         return(await _imageStorageService.GetImage(fileName));
     }
     catch (Exception e)
     {
         throw new ServiceException($"Unable to get {fileName}", e);
     }
 }