Add ProfileViews and RecResultViews to IRecDbContext

Updated IRecDbContext to include DbSet properties for ProfileView and ResultView entities, enabling management of these collections within the context.
This commit is contained in:
2026-01-12 14:17:34 +01:00
parent 3f36f048b2
commit 5cce52ec27

View File

@@ -11,6 +11,10 @@ public interface IRecDbContext
public DbSet<RecActionView> RecActionViews { get; set; }
public DbSet<ProfileView> ProfileViews { get; set; }
public DbSet<ResultView> RecResultViews { get; set; }
public DbSet<OutRes> OutRes { get; set; }
public DbSet<HeaderQueryResult> HeaderQueryResults { get; set; }