Library to implement lightweight User Management domain
To install it, use proper command:
dotnet add package Umbrella.UserManagement
dotnet add package Umbrella.UserManagement.Firestore
For more details about download, see NuGet Web Site
to setup the repository at application startup, use the following extension:
using Umbrella.UserManagement;
. . .
builder.Services.AddUserManagement(Environment.CurrentDirectory);
to setup the repository at application startup, use the following extension:
using Umbrella.UserManagement.Firestore;
. . .
builder.Services.AddFirestoreUserManagement(Environment.CurrentDirectory);