|
|
@ -407,6 +407,8 @@ public class PeisDbContext : |
|
|
|
|
|
|
|
|
public DbSet<InformedConsentTemplate> InformedConsentTemplates { get; set; } = null!; |
|
|
public DbSet<InformedConsentTemplate> InformedConsentTemplates { get; set; } = null!; |
|
|
|
|
|
|
|
|
|
|
|
public DbSet<GiveUpCheckTemplate> GiveUpCheckTemplates { get; set; } = null!; |
|
|
|
|
|
|
|
|
public PeisDbContext(DbContextOptions<PeisDbContext> options) |
|
|
public PeisDbContext(DbContextOptions<PeisDbContext> options) |
|
|
: base(options) |
|
|
: base(options) |
|
|
{ |
|
|
{ |
|
|
@ -669,7 +671,8 @@ public class PeisDbContext : |
|
|
.ApplyConfiguration(new RoleDirectorMenuInfoDbMapping()) |
|
|
.ApplyConfiguration(new RoleDirectorMenuInfoDbMapping()) |
|
|
.ApplyConfiguration(new InterfaceSendLogDbMapping()) |
|
|
.ApplyConfiguration(new InterfaceSendLogDbMapping()) |
|
|
.ApplyConfiguration(new PreCheckAsbitemDbMapping()) |
|
|
.ApplyConfiguration(new PreCheckAsbitemDbMapping()) |
|
|
.ApplyConfiguration(new InformedConsentTemplateDbMapping()); |
|
|
|
|
|
|
|
|
.ApplyConfiguration(new InformedConsentTemplateDbMapping()) |
|
|
|
|
|
.ApplyConfiguration(new GiveUpCheckTemplateDbMapping()); |
|
|
|
|
|
|
|
|
#endregion
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|