dal + other

This commit is contained in:
Mikhail Kuznetsov
2023-05-17 16:30:13 +10:00
parent 5338c489aa
commit 868af2dd0e
27 changed files with 346 additions and 20 deletions

View File

@@ -0,0 +1,16 @@
using Microsoft.EntityFrameworkCore;
using PARR.DAL.Models;
namespace PARR.DAL.Context
{
internal class DataContext : DbContext
{
public DataContext(DbContextOptions<DataContext> options) : base(options) { }
//public DbSet<Test> Tests { get; set; }
//public DbSet<Place> Places { get; set; }
//public DbSet<AreaCategory> AreaCategories { get; set; }
//public DbSet<Area> Areas { get; set; }
}
}