forked from ngocketit/netcore-fs13-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Program.cs
68 lines (50 loc) · 1.95 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
using NETCoreDemo.Services;
using System.Text.Json.Serialization;
using NETCoreDemo.Models;
using NETCoreDemo.DTOs;
using NETCoreDemo.Db;
using Microsoft.EntityFrameworkCore;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services
.AddControllers()
.AddJsonOptions(options =>
{
options.JsonSerializerOptions.Converters.Add(new JsonStringEnumConverter());
});
builder.Services.AddDbContext<AppDbContext>();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
// Register the services for dependency injection
builder.Services.AddScoped<IWeatherForecastService, WeatherForecastService>();
builder.Services.AddScoped<IOrderProcessingService, OrderProcessingService>();
builder.Services.AddScoped<IEmailSenderService, FakeEmailSenderService>();
builder.Services.AddSingleton<IChatGPTService, FakeChatGPTService>();
builder.Services.AddSingleton<ICounterService, RequestCounterService>();
// Change this to different lifetime and see how it works
builder.Services.AddTransient<IDemoService, DemoService>();
builder.Services.AddScoped<ICourseService, DbCourseSerivce>();
builder.Services.AddScoped<IStudentService, DbStudentService>();
builder.Services.Configure<CourseSetting>(builder.Configuration.GetSection("MyCourseSettings"));
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
// NOTE: Don't do this in production
using (var scope = app.Services.CreateScope())
{
var dbContext = scope.ServiceProvider.GetService<AppDbContext>();
if (dbContext is not null)
{
dbContext.Database.EnsureDeleted();
dbContext.Database.EnsureCreated();
}
}
}
app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();
app.Run();