Created
March 21, 2019 12:23
-
-
Save Markonis/b45c6db81e489deeb22fca5c88fd6e44 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IUserRepoSearchActor : IActor | |
{ | |
Task<Result<SearchOutput>> SearchAsync(SearchInput input); | |
Task SetUserInfoAsync(UserInfo userInfo); | |
Task SetRepositoryAsync(Repository repository); | |
Task<AutoCompleteOutput> AutoCompleteAsync(SearchInput input); | |
Task<SearchOutput> GetSuggestionsAsync(SearchInput input); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment