Skip to content

Instantly share code, notes, and snippets.

@ayeshN
Created May 10, 2020 11:22
Show Gist options
  • Save ayeshN/77054c248a1e2f6b665e398a14ed382c to your computer and use it in GitHub Desktop.
Save ayeshN/77054c248a1e2f6b665e398a14ed382c to your computer and use it in GitHub Desktop.
using B2CUserManagement.Models;
using System.Threading.Tasks;
namespace B2CUserManagement.Interfaces
{
public interface IUserManager
{
Task CreateUser(B2CUser user);
void DeleteUser(string email);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment