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