15 lines
301 B
C#
15 lines
301 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using PARR.AIHITLoader.Models;
|
|
|
|
namespace PARR.AIHITLoader.Context
|
|
{
|
|
internal class AIHITContext : DbContext
|
|
{
|
|
public AIHITContext(DbContextOptions<AIHITContext> options) : base(options) { }
|
|
|
|
|
|
|
|
public DbSet<EK> EKs { get; set; }
|
|
}
|
|
}
|