40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
using EventVisitorClientApp;
|
|
using EventVisitorDatabase.Implements;
|
|
using EventVisitorLogic.OfficePackage.Implements;
|
|
using EventVisitorLogic.OfficePackage;
|
|
using EventVisitorLogic.StoragesContracts;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// Add services to the container.
|
|
builder.Services.AddControllersWithViews();
|
|
builder.Services.AddTransient<IEventStorage, EventStorage>();
|
|
builder.Services.AddTransient<IVisitorStorage, VisitorStorage>();
|
|
builder.Services.AddTransient<IOrganizerStorage, OrganizerStorage>();
|
|
builder.Services.AddTransient<ISentMessageStorage, SentMessageStorage>();
|
|
builder.Services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
|
|
builder.Services.AddTransient<AbstractSaveToWord, SaveToWord>();
|
|
var app = builder.Build();
|
|
APIClient.Connect(builder.Configuration);
|
|
|
|
// Configure the HTTP request pipeline.
|
|
if (!app.Environment.IsDevelopment())
|
|
{
|
|
app.UseExceptionHandler("/Home/Error");
|
|
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
|
app.UseHsts();
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
app.UseStaticFiles();
|
|
|
|
app.UseRouting();
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.MapControllerRoute(
|
|
name: "default",
|
|
pattern: "{controller=Home}/{action=Index}/{id?}");
|
|
|
|
app.Run();
|