2024-04-06 17:22:40 +04:00
|
|
|
using SushiBarContracts.BusinessLogicsContracts;
|
|
|
|
using SushiBarContracts.StoragesContracts;
|
|
|
|
using SushiBarDatabaseImplement.Implements;
|
|
|
|
using Microsoft.OpenApi.Models;
|
|
|
|
using SushiBarBusinessLogic.BusinessLogic;
|
|
|
|
using SushiBarBusinessLogic;
|
2024-04-07 00:01:10 +04:00
|
|
|
|
2024-04-06 17:22:40 +04:00
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.Logging.SetMinimumLevel(LogLevel.Trace);
|
|
|
|
builder.Logging.AddLog4Net("log4net.config");
|
|
|
|
// Add services to the container.
|
|
|
|
builder.Services.AddTransient<IClientStorage, ClientStorage>();
|
|
|
|
builder.Services.AddTransient<IOrderStorage, OrderStorage>();
|
|
|
|
builder.Services.AddTransient<ISushiStorage, SushiStorage>();
|
|
|
|
builder.Services.AddTransient<IOrderLogic, OrderLogic>();
|
|
|
|
builder.Services.AddTransient<IClientLogic, ClientLogic>();
|
|
|
|
builder.Services.AddTransient<ISushiLogic, SushiLogic>();
|
|
|
|
builder.Services.AddControllers();
|
2024-04-07 00:01:10 +04:00
|
|
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
2024-04-06 17:22:40 +04:00
|
|
|
builder.Services.AddEndpointsApiExplorer();
|
|
|
|
builder.Services.AddSwaggerGen(c =>
|
|
|
|
{
|
|
|
|
c.SwaggerDoc("v1", new OpenApiInfo
|
|
|
|
{
|
|
|
|
Title = "SushiBarRestApi",
|
2024-04-07 00:01:10 +04:00
|
|
|
Version = "v1"
|
2024-04-06 17:22:40 +04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
var app = builder.Build();
|
|
|
|
// Configure the HTTP request pipeline.
|
|
|
|
if (app.Environment.IsDevelopment())
|
|
|
|
{
|
|
|
|
app.UseSwagger();
|
2024-04-07 00:01:10 +04:00
|
|
|
app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "SushiBarRestApi v1"));
|
2024-04-06 17:22:40 +04:00
|
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.MapControllers();
|
|
|
|
app.Run();
|