2023-04-06 17:48:20 +04:00
|
|
|
using HotelContracts.BusinessLogicsContracts;
|
|
|
|
using HotelContracts.StoragesContracts;
|
|
|
|
using HotelDataBaseImplement.Implemets;
|
2023-04-06 17:19:43 +04:00
|
|
|
using Microsoft.OpenApi.Models;
|
|
|
|
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
|
|
|
|
builder.Logging.SetMinimumLevel(LogLevel.Trace);
|
|
|
|
builder.Logging.AddLog4Net("log4net.config");
|
|
|
|
|
|
|
|
|
2023-04-06 17:48:20 +04:00
|
|
|
builder.Services.AddTransient<IHeadwaiterStorage, HeadwaiterStorage>();
|
|
|
|
builder.Services.AddTransient<IDinnerStorage, DinnerStorage>();
|
|
|
|
builder.Services.AddTransient<IRoomStorage, RoomStorage>();
|
|
|
|
builder.Services.AddTransient<IConferenceBookingStorage, ConferenceBookingStorage>();
|
|
|
|
|
|
|
|
/*
|
2023-04-06 17:19:43 +04:00
|
|
|
builder.Services.AddTransient<IClientLogic, ClientLogic>();
|
|
|
|
builder.Services.AddTransient<IReinforcedLogic, ReinforcedLogic>();
|
|
|
|
builder.Services.AddControllers();*/
|
|
|
|
builder.Services.AddEndpointsApiExplorer();
|
|
|
|
builder.Services.AddSwaggerGen(c =>
|
|
|
|
{
|
|
|
|
c.SwaggerDoc("v1", new OpenApiInfo
|
|
|
|
{
|
|
|
|
Title = "ConfectoneryRestApi",
|
|
|
|
Version = "v1"
|
|
|
|
});
|
|
|
|
});
|
|
|
|
var app = builder.Build();
|
|
|
|
if (app.Environment.IsDevelopment())
|
|
|
|
{
|
|
|
|
app.UseSwagger();
|
|
|
|
app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json",
|
|
|
|
"ConfectoneryRestApi v1"));
|
|
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.MapControllers();
|
|
|
|
app.Run();
|