41 lines
924 B
C#
41 lines
924 B
C#
|
using Persistence.Repository;
|
|||
|
|
|||
|
namespace Persistence.API;
|
|||
|
|
|||
|
public class Startup
|
|||
|
{
|
|||
|
public IConfiguration Configuration { get; }
|
|||
|
public Startup(IConfiguration configuration)
|
|||
|
{
|
|||
|
Configuration = configuration;
|
|||
|
}
|
|||
|
|
|||
|
public void ConfigureServices(IServiceCollection services)
|
|||
|
{
|
|||
|
// Add services to the container.
|
|||
|
|
|||
|
services.AddControllers();
|
|||
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
|||
|
services.AddEndpointsApiExplorer();
|
|||
|
services.AddSwaggerGen();
|
|||
|
|
|||
|
services.AddInfrastructure(Configuration);
|
|||
|
}
|
|||
|
|
|||
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|||
|
{
|
|||
|
|
|||
|
app.UseSwagger();
|
|||
|
app.UseSwaggerUI();
|
|||
|
|
|||
|
app.UseRouting();
|
|||
|
|
|||
|
//app.UseAuthorization();
|
|||
|
|
|||
|
app.UseEndpoints(endpoints =>
|
|||
|
{
|
|||
|
endpoints.MapControllers();
|
|||
|
});
|
|||
|
}
|
|||
|
}
|