83 lines
3.5 KiB
C#
83 lines
3.5 KiB
C#
using HotelBusinessLogic.BusinessLogic;
|
|
using HotelBusinessLogic.MailWorker;
|
|
using HotelBusinessLogic.OfficePackage;
|
|
using HotelBusinessLogic.OfficePackage.Implements;
|
|
using HotelContracts.BindingModels;
|
|
using HotelContracts.BusinessLogicsContracts;
|
|
using HotelContracts.StoragesContracts;
|
|
using HotelDataBaseImplement.Implements;
|
|
using Microsoft.OpenApi.Models;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.Logging.SetMinimumLevel(LogLevel.Trace);
|
|
builder.Logging.AddLog4Net("log4net.config");
|
|
// Add services to the container.
|
|
builder.Services.AddTransient<IOrganiserStorage, OrganiserStorage>();
|
|
builder.Services.AddTransient<IMealPlanStorage, MealPlanStorage>();
|
|
builder.Services.AddTransient<IParticipantStorage, ParticipantStorage>();
|
|
builder.Services.AddTransient<IConferenceStorage, ConferenceStorage>();
|
|
builder.Services.AddTransient<IAdministratorStorage, AdministratorStorage>();
|
|
builder.Services.AddTransient<IDinnerStorage, DinnerStorage>();
|
|
builder.Services.AddTransient<IRoomStorage, RoomStorage>();
|
|
builder.Services.AddTransient<IConferenceBookingStorage, ConferenceBookingStorage>();
|
|
|
|
builder.Services.AddTransient<IOrganiserLogic, OrganiserLogic>();
|
|
builder.Services.AddTransient<IMealPlanLogic, MealPlanLogic>();
|
|
builder.Services.AddTransient<IParticipantLogic, ParticipantLogic>();
|
|
builder.Services.AddTransient<IConferenceLogic, ConferenceLogic>();
|
|
builder.Services.AddTransient<IAdministratorLogic, AdministratorLogic>();
|
|
builder.Services.AddTransient<IDinnerLogic, DinnerLogic>();
|
|
builder.Services.AddTransient<IRoomLogic, RoomLogic>();
|
|
builder.Services.AddTransient<IConferenceBookingLogic, ConferenceBookingLogic>();
|
|
builder.Services.AddSingleton<AbstractMailWorker, MailKitWorker>();
|
|
builder.Services.AddTransient<AbstractSaveToPdfAdministrator, SaveToPdfAdministrator>();
|
|
builder.Services.AddTransient<IReportAdministratorLogic, ReportLogicAdministrator>();
|
|
builder.Services.AddTransient<AbstractSaveToExcelAdministrator, SaveToExcelAdministrator>();
|
|
builder.Services.AddTransient<AbstractSaveToWordAdministrator, SaveToWordAdministrator>();
|
|
builder.Services.AddTransient<AbstractSaveToExcelAdministrator, SaveToExcelAdministrator>();
|
|
builder.Services.AddTransient<AbstractSaveToWordAdministrator, SaveToWordAdministrator>();
|
|
|
|
builder.Services.AddControllers();
|
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
|
builder.Services.AddEndpointsApiExplorer();
|
|
builder.Services.AddSwaggerGen(c =>
|
|
{
|
|
c.SwaggerDoc("v1", new OpenApiInfo
|
|
{
|
|
Title = "HotelRestApi",
|
|
Version = "v1"
|
|
});
|
|
});
|
|
|
|
var app = builder.Build();
|
|
var mailSender = app.Services.GetService<AbstractMailWorker>();
|
|
mailSender?.MailConfig(new MailConfigBindingModel
|
|
{
|
|
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())
|
|
});
|
|
|
|
// Configure the HTTP request pipeline.
|
|
if (app.Environment.IsDevelopment())
|
|
{
|
|
app.UseSwagger();
|
|
app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "HotelRestApi v1"));
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
app.UseAuthorization();
|
|
app.MapControllers();
|
|
app.Run();
|