17 lines
453 B
C#
17 lines
453 B
C#
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; }
|
|
}
|
|
}
|