50 lines
1.6 KiB
C#
50 lines
1.6 KiB
C#
|
using ComputerHardwareStoreContracts.BusinessLogicsContracts;
|
||
|
using ComputerHardwareStoreContracts.StorageContracts;
|
||
|
using ComputerHardwareStoreDatabaseImplement.Implements;
|
||
|
using ComputerHardwareStoreBusinessLogic.BusinessLogic;
|
||
|
|
||
|
var builder = WebApplication.CreateBuilder(args);
|
||
|
|
||
|
// Add services to the container.
|
||
|
|
||
|
builder.Services.AddControllersWithViews();
|
||
|
|
||
|
builder.Logging.SetMinimumLevel(LogLevel.Trace);
|
||
|
|
||
|
builder.Services.AddTransient<IVendorStorage, VendorStorage>();
|
||
|
builder.Services.AddTransient<IPurchaseStorage, PurchaseStorage>();
|
||
|
builder.Services.AddTransient<IBuildStorage, BuildStorage>();
|
||
|
builder.Services.AddTransient<ICommentStorage, CommentStorage>();
|
||
|
builder.Services.AddTransient<IProductStorage, ProductStorage>();
|
||
|
builder.Services.AddTransient<IComponentStorage, ComponentStorage>();
|
||
|
builder.Services.AddTransient<IStoreKeeperStorage, StoreKeeperStorage>();
|
||
|
builder.Services.AddTransient<IVendorLogic, VendorLogic>();
|
||
|
builder.Services.AddTransient<IPurchaseLogic, PurchaseLogic>();
|
||
|
builder.Services.AddTransient<IBuildLogic, BuildLogic>();
|
||
|
builder.Services.AddTransient<ICommentLogic, CommentLogic>();
|
||
|
builder.Services.AddTransient<IProductLogic, ProductLogic>();
|
||
|
builder.Services.AddTransient<IComponentLogic, ComponentLogic>();
|
||
|
builder.Services.AddTransient<IStoreKeeperLogic, StoreKeeperLogic>();
|
||
|
|
||
|
var app = builder.Build();
|
||
|
|
||
|
// Configure the HTTP request pipeline.
|
||
|
if (app.Environment.IsDevelopment())
|
||
|
{
|
||
|
app.UseSwagger();
|
||
|
app.UseSwaggerUI();
|
||
|
}
|
||
|
|
||
|
app.UseHttpsRedirection();
|
||
|
app.UseStaticFiles();
|
||
|
|
||
|
app.UseRouting();
|
||
|
|
||
|
app.UseAuthorization();
|
||
|
|
||
|
app.MapControllerRoute(
|
||
|
name: "default",
|
||
|
pattern: "{controller=Home}/{action=Index}/{id?}");
|
||
|
|
||
|
app.Run();
|