diff --git a/src/ReC.Application/Common/Interfaces/IRecDbContext.cs b/src/ReC.Application/Common/Interfaces/IRecDbContext.cs index 540ee32..36006af 100644 --- a/src/ReC.Application/Common/Interfaces/IRecDbContext.cs +++ b/src/ReC.Application/Common/Interfaces/IRecDbContext.cs @@ -31,5 +31,7 @@ public interface IRecDbContext public DbSet RecActions { get; set; } + public DbSet RecResults { get; set; } + public Task SaveChangesAsync(CancellationToken cancel = default); } \ No newline at end of file diff --git a/src/ReC.Infrastructure/RecDbContext.cs b/src/ReC.Infrastructure/RecDbContext.cs index 33f162b..6315cf7 100644 --- a/src/ReC.Infrastructure/RecDbContext.cs +++ b/src/ReC.Infrastructure/RecDbContext.cs @@ -32,6 +32,8 @@ public class RecDbContext(DbContextOptions options) : DbContext(op public DbSet RecActions { get; set; } + public DbSet RecResults { get; set; } + protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder);