using Microsoft.AspNetCore.Identity; namespace MicCheck.Api.Users; public static class DependencyRegistration { public static IServiceCollection AddUsersServices(this IServiceCollection services) { services.AddScoped(); services.AddScoped, PasswordHasher>(); return services; } }