user create command and user repo

This commit is contained in:
2026-02-04 22:18:05 +01:00
parent b73fd8eb05
commit 01f25fb093
10 changed files with 136 additions and 5 deletions

View File

@@ -1,6 +1,9 @@
namespace AipsCore.Infrastructure.Db;
using AipsCore.Infrastructure.Entities;
using Microsoft.EntityFrameworkCore;
public class AipsDbContext
namespace AipsCore.Infrastructure.Db;
public class AipsDbContext : DbContext
{
public DbSet<User> Users { get; set; }
}