InvalidOperationException: Unable to resolve service for type 'Server_Uitwerking_2.Managers.SignInManager' while attempting to activate 'Server_Uitwerking_2.Controllers.AccountController'. code example

Example: Unable to resolve service for type 'Microsoft.AspNetCore.Identity.UserManager

services.AddIdentity<Automobile.Models.Account, IdentityRole>(options =>
    {
        options.User.RequireUniqueEmail = false;
    })
    .AddEntityFrameworkStores<Providers.Database.EFProvider.DataContext>()
    .AddDefaultTokenProviders();