79 lines
2.5 KiB
C#
79 lines
2.5 KiB
C#
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Diagnostics;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.OpenApi.Models;
|
|
using WD7UVN_HFT_2023241.Logic;
|
|
using WD7UVN_HFT_2023241.Repository;
|
|
|
|
namespace WD7UVN_HFT_2023241.Endpoint
|
|
{
|
|
public class Startup
|
|
{
|
|
public Startup(IConfiguration configuration)
|
|
{
|
|
Configuration = configuration;
|
|
}
|
|
|
|
public IConfiguration Configuration { get; }
|
|
|
|
// This method gets called by the runtime. Use this method to add services to the container.
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.AddTransient<ILogicServices, LogicServices>();
|
|
services.AddTransient<CompanyDbContext>();
|
|
services.AddTransient<ICRUD, CRUD>();
|
|
|
|
services.AddControllers();
|
|
services.AddSwaggerGen(c =>
|
|
{
|
|
c.SwaggerDoc("v1", new OpenApiInfo { Title = "WD7UVN_HFT_2023241.Endpoint", Version = "v1" });
|
|
});
|
|
|
|
Database.Context = new CompanyDbContext();
|
|
}
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
{
|
|
if (env.IsDevelopment())
|
|
{
|
|
app.UseDeveloperExceptionPage();
|
|
app.UseSwagger();
|
|
app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "WD7UVN_HFT_2023241.Endpoint v1"));
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
app.UseCors(x => x
|
|
.AllowCredentials()
|
|
.AllowAnyMethod()
|
|
.AllowAnyHeader()
|
|
.WithOrigins("https://localhost:5003"));
|
|
|
|
app.UseRouting();
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.UseEndpoints(endpoints =>
|
|
{
|
|
endpoints.MapControllers();
|
|
});
|
|
|
|
app.UseExceptionHandler(c => c.Run(async context =>
|
|
{
|
|
var exception = context.Features
|
|
.Get<IExceptionHandlerPathFeature>()
|
|
.Error;
|
|
|
|
var response = new { Msg = exception.Message };
|
|
|
|
await context.Response.WriteAsJsonAsync(response);
|
|
}));
|
|
}
|
|
}
|
|
}
|