mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-07-16 17:47:22 +00:00
16 lines
534 B
C#
16 lines
534 B
C#
using Features.UserManagement.Repository;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Features.UserManagement.DependencyInjection;
|
|
|
|
/// <summary>
|
|
/// Registers the services owned by the UserManagement feature slice.
|
|
/// </summary>
|
|
public static class FeaturesUserManagementServiceCollectionExtensions
|
|
{
|
|
public static IServiceCollection AddFeaturesUserManagement(this IServiceCollection services)
|
|
{
|
|
services.AddScoped<IUserAccountRepository, UserAccountRepository>();
|
|
return services;
|
|
}
|
|
} |