From 5cce52ec275ac70e693f177b3351a928f42d8b6f Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 12 Jan 2026 14:17:34 +0100 Subject: [PATCH] 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. --- src/ReC.Application/Common/Interfaces/IRecDbContext.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ReC.Application/Common/Interfaces/IRecDbContext.cs b/src/ReC.Application/Common/Interfaces/IRecDbContext.cs index e6a34c9..540ee32 100644 --- a/src/ReC.Application/Common/Interfaces/IRecDbContext.cs +++ b/src/ReC.Application/Common/Interfaces/IRecDbContext.cs @@ -11,6 +11,10 @@ public interface IRecDbContext public DbSet RecActionViews { get; set; } + public DbSet ProfileViews { get; set; } + + public DbSet RecResultViews { get; set; } + public DbSet OutRes { get; set; } public DbSet HeaderQueryResults { get; set; }