Initial commit
All checks were successful
Build / build (push) Successful in 57s

This commit is contained in:
2025-11-08 14:26:53 +00:00
commit 018d8e184e
26 changed files with 1251 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using Microsoft.EntityFrameworkCore;
namespace TestAspNetCore.Infra;
public class AppDbContext(DbContextOptions<AppDbContext> options) : DbContext(options)
{
public DbSet<Job> Jobs
{
get; set;
}
public DbSet<User> Users
{
get; set;
}
public DbSet<Vehicle> Vehicles
{
get; set;
}
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
}
}