src/Relecloud.Models/Services/IConcertSearchService.cs (10 lines of code) (raw):

// Copyright (c) Microsoft Corporation. All Rights Reserved. // Licensed under the MIT License. using Relecloud.Models.Search; namespace Relecloud.Models.Services { public interface IConcertSearchService { Task<SearchResponse<ConcertSearchResult>> SearchAsync(SearchRequest request); Task<ICollection<string>> SuggestAsync(string query); } }