Skip to content

Instantly share code, notes, and snippets.

@Odonno
Created June 8, 2020 13:11
Show Gist options
  • Save Odonno/615e584c22a10fd3255b9cb7ebdda642 to your computer and use it in GitHub Desktop.
Save Odonno/615e584c22a10fd3255b9cb7ebdda642 to your computer and use it in GitHub Desktop.
.NET Core Azure Templates - GraphApiService
public interface IGraphApiService
{
Task<User> GetCurrentProfileAsync();
Task<IEnumerable<User>> SearchUsersAsync(string search, int limit);
Task<IEnumerable<User>> GetUsersAsync(IEnumerable<string> userIds);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment