55 lines
2.3 KiB
C#
55 lines
2.3 KiB
C#
using SewingDressesBusinessLogic.BusinessLogic;
|
|
using SewingDressesContracts.BusinessLogicsContracts;
|
|
using SewingDressesContracts.StoragesContracts;
|
|
using SewingDressesDatabaseImplement.Implements;
|
|
using Microsoft.OpenApi.Models;
|
|
using SewingDressesBusinessLogic.MailWorker;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.Logging.SetMinimumLevel(LogLevel.Trace);
|
|
builder.Logging.AddLog4Net("log4net.config");
|
|
|
|
|
|
builder.Services.AddTransient<IClientStorage, ClientStorage>();
|
|
builder.Services.AddTransient<IOrderStorage, OrderStorage>();
|
|
builder.Services.AddTransient<IDressStorage, DressStorage>();
|
|
builder.Services.AddTransient<IOrderLogic, OrderLogic>();
|
|
builder.Services.AddTransient<IClientLogic, ClientLogic>();
|
|
builder.Services.AddTransient<IDressLogic, DressLogic>();
|
|
builder.Services.AddTransient<IImplementStorage, ImplementStorage>();
|
|
builder.Services.AddTransient<IImplementLogic, ImplementLogic>();
|
|
builder.Services.AddTransient<IMessageInfoLogic, MessageInfoLogic>();
|
|
builder.Services.AddTransient<IMessageInfoStorage, MessageInfoStorage>();
|
|
|
|
builder.Services.AddSingleton<AbstractMailWorker, MailKitWorker>();
|
|
|
|
builder.Services.AddControllers();
|
|
builder.Services.AddEndpointsApiExplorer();
|
|
builder.Services.AddSwaggerGen(c =>
|
|
{
|
|
c.SwaggerDoc("v1", new OpenApiInfo { Title = "SewingDressesRestApi", Version = "v1" });
|
|
});
|
|
|
|
var app = builder.Build();
|
|
var mailSender = app.Services.GetService<AbstractMailWorker>();
|
|
mailSender?.MailConfig(new()
|
|
{
|
|
MailLogin = builder.Configuration?.GetSection("MailLogin")?.Value?.ToString() ?? string.Empty,
|
|
MailPassword = builder.Configuration?.GetSection("MailPassword")?.Value?.ToString() ?? string.Empty,
|
|
SmtpClientHost = builder.Configuration?.GetSection("SmtpClientHost")?.Value?.ToString() ?? string.Empty,
|
|
SmtpClientPort = Convert.ToInt32(builder.Configuration?.GetSection("SmtpClientPort")?.Value?.ToString()),
|
|
PopHost = builder.Configuration?.GetSection("PopHost")?.Value?.ToString() ?? string.Empty,
|
|
PopPort = Convert.ToInt32(builder.Configuration?.GetSection("PopPort")?.Value?.ToString())
|
|
|
|
});
|
|
if (app.Environment.IsDevelopment())
|
|
{
|
|
app.UseSwagger();
|
|
app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "SewingDressesRestApi v1"));
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
app.UseAuthentication();
|
|
app.MapControllers();
|
|
app.Run(); |