Skip to content

Instantly share code, notes, and snippets.

View ste1nz's full-sized avatar

ste1nz

  • Joined Oct 31, 2025
View GitHub Profile
@ste1nz
ste1nz / задание 6
Last active November 1, 2025 00:43
Эрдыниев Ардан, гр. 01221
using Microsoft.EntityFrameworkCore;
using System.Collections.Generic;
using System.Reflection.Emit;
using System.Runtime.InteropServices;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddControllers();
builder.Services.AddDbContext<AppDbContext>();
var app = builder.Build();
app.MapControllers();