Skip to content

Instantly share code, notes, and snippets.

@ayeshN
Last active May 10, 2020 11:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ayeshN/a3b429ad0d02c754e894e6e3c000949e to your computer and use it in GitHub Desktop.
Save ayeshN/a3b429ad0d02c754e894e6e3c000949e to your computer and use it in GitHub Desktop.
using B2CUserManagement.Models;
using Microsoft.Graph;
using System.Threading.Tasks;
namespace B2CUserManagement.Interfaces
{
public interface IUserManager
{
Task CreateUser(B2CUser user);
Task<IGraphServiceUsersCollectionPage> GetUserByEmail(string email);
Task<bool> DeleteUser(string email);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment