Skip to content

Instantly share code, notes, and snippets.

@Markonis
Created March 21, 2019 12:23
Show Gist options
  • Save Markonis/b45c6db81e489deeb22fca5c88fd6e44 to your computer and use it in GitHub Desktop.
Save Markonis/b45c6db81e489deeb22fca5c88fd6e44 to your computer and use it in GitHub Desktop.
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