ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarRestApi/Program.cs

45 lines
1.4 KiB
C#
Raw Normal View History

2024-04-25 13:16:23 +04:00
using Microsoft.OpenApi.Models;
2024-05-01 10:50:16 +04:00
using SushiBarBusinessLogic;
2024-05-01 13:12:40 +04:00
using SushiBarBusinessLogic.BusinessLogics;
2024-05-12 19:04:40 +04:00
using SushiBarContracts.BusinessLogicsContracts;
using SushiBarContracts.StoragesContracts;
using SushiBarDatabaseImplement.Implements;
2024-04-25 13:16:23 +04:00
var builder = WebApplication.CreateBuilder(args);
2024-05-12 19:04:40 +04:00
2024-04-25 13:16:23 +04:00
// Add services to the container.
2024-05-12 19:04:40 +04:00
2024-04-25 13:16:23 +04:00
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>();
2024-05-12 19:04:40 +04:00
builder.Services.AddTransient<IImplementerStorage, ImplementerStorage>();
builder.Services.AddTransient<IImplementerLogic, ImplementerLogic>();
2024-04-25 13:16:23 +04:00
builder.Services.AddControllers();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen(c =>
{
2024-05-01 10:50:16 +04:00
c.SwaggerDoc("v1", new OpenApiInfo
{
2024-05-12 19:04:40 +04:00
Title = "AbstractShopRestApi",
Version
= "v1"
2024-05-01 10:50:16 +04:00
});
2024-04-25 13:16:23 +04:00
});
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
2024-05-12 19:04:40 +04:00
app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json",
"AbstractShopRestApi v1"));
2024-04-25 13:16:23 +04:00
}
app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();
2024-05-12 19:04:40 +04:00
app.Run();