public void ConfigureServices(IServiceCollection services) | |
{ | |
services.AddControllers(); | |
services.AddDbContext<AplicacaoContext>(options => | |
options.UseInMemoryDatabase("DBMemory")); | |
services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>(); | |
services.AddScoped<IEnvioEmail, EnvioEmail>(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment