|
|
|
@ -363,6 +363,10 @@ public class PeisDbContext : |
|
|
|
|
|
|
|
public DbSet<FollowUp> FollowUps { get; set; } = null!; |
|
|
|
|
|
|
|
public DbSet<RegisterCheckPacs> RegisterCheckPacss { get; set; } = null!; |
|
|
|
|
|
|
|
public DbSet<RegisterCheckPacsPicture> RegisterCheckPacsPictures { get; set; } = null!; |
|
|
|
|
|
|
|
public PeisDbContext(DbContextOptions<PeisDbContext> options) |
|
|
|
: base(options) |
|
|
|
{ |
|
|
|
@ -606,7 +610,9 @@ public class PeisDbContext : |
|
|
|
.ApplyConfiguration(new RoomDetailDbMapping()) |
|
|
|
.ApplyConfiguration(new FollowUpDbMapping()) |
|
|
|
.ApplyConfiguration(new CommonTableDbMapping()) |
|
|
|
.ApplyConfiguration(new CommonTableTypeDbMapping()); |
|
|
|
.ApplyConfiguration(new CommonTableTypeDbMapping()) |
|
|
|
.ApplyConfiguration(new RegisterCheckPacsDbMapping()) |
|
|
|
.ApplyConfiguration(new RegisterCheckPacsPictureDbMapping()); |
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|