feat(aititMainLoader): Сделана основная логика загрущки данных из АИХ ИТ в очередь сообщений
This commit is contained in:
14
PARR.AIHITMainLoader/Context/AIHITContext.cs
Normal file
14
PARR.AIHITMainLoader/Context/AIHITContext.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using PARR.AIHITMainLoader.Models;
|
||||
|
||||
namespace PARR.AIHITMainLoader.Context
|
||||
{
|
||||
internal class AIHITContext : DbContext
|
||||
{
|
||||
public AIHITContext(DbContextOptions<AIHITContext> options) : base(options) { }
|
||||
|
||||
|
||||
public DbSet<CvkData> CvkDatas { get; set; }
|
||||
public DbSet<PtkData> PtkDatas { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user