1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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();
|