public async Task <SearchResult> Handle(Query request, CancellationToken cancellationToken) { var SearchResult = await _photoAcessor.SearchPhoto(request.paramsk); if (SearchResult == null) { throw new Exception("Not found"); } return(SearchResult); }