feat(aihit): AIHITLoadWorker + AIHITSyncWorker
This commit is contained in:
14
PARR.AIHITLoader/Context/AIHITContext.cs
Normal file
14
PARR.AIHITLoader/Context/AIHITContext.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user