Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public interface IUserRepoSearchActor : IActor
  2. {
  3. Task<Result<SearchOutput>> SearchAsync(SearchInput input);
  4. Task SetUserInfoAsync(UserInfo userInfo);
  5. Task SetRepositoryAsync(Repository repository);
  6. Task<AutoCompleteOutput> AutoCompleteAsync(SearchInput input);
  7. Task<SearchOutput> GetSuggestionsAsync(SearchInput input);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement