123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using MTWorkHR.Application;
- using MTWorkHR.Infrastructure;
- using MTWorkHR.Identity;
- using Microsoft.Extensions.Configuration;
- using MTWorkHR.Infrastructure.Data;
- using Microsoft.EntityFrameworkCore;
- using MTWorkHR.Core;
- using MTWorkHR.Core.Global;
- var builder = WebApplication.CreateBuilder(args);
- // Add services to the container.
- builder.Services.AddDbContext<HRDataContext>(options =>
- {
- options.UseSqlServer(builder.Configuration.GetSection("ConnectionStrings:MTWorkHRConnectionString").Value);
- });
- var config = new AppSettingsConfiguration();
- builder.Configuration.Bind(config);
- builder.Services.AddApplicationServices(config);
- builder.Services.AddInfrastructureServices(config);
- //builder.Services.AddPersistenceServices(builder.Configuration);
- builder.Services.AddIdentityServices(config);
- builder.Services.AddControllers();
- // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
- builder.Services.AddEndpointsApiExplorer();
- builder.Services.AddSwaggerGen();
- var app = builder.Build();
- // Configure the HTTP request pipeline.
- // if (app.Environment.IsDevelopment())
- // {
- app.UseSwagger();
- app.UseSwaggerUI();
- // }
- app.UseHttpsRedirection();
- app.UseAuthentication();
- app.UseAuthorization();
- app.MapControllers();
- app.Run();
|