using Lab9.Context; using Lab9.Repositories; using Microsoft.EntityFrameworkCore; namespace Lab9 { public class Program { public static void Main(string[] args) { var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddControllersWithViews(); builder.Services.AddSession(options => { options.Cookie.Name = "SessionId"; options.Cookie.IsEssential = true; }); builder.Services.AddDbContext(options => options.UseSqlServer(builder.Configuration.GetConnectionString("NewsDB"))); builder.Services.AddScoped(); var app = builder.Build(); // 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.UseSession(); app.MapControllers(); app.Run(); } } }