Merge branch 'develop' into working

This commit is contained in:
suphonchai Phoonsawat 2023-07-24 09:06:48 +07:00
commit 35c0342934
38 changed files with 32780 additions and 5367 deletions

View file

@ -11,6 +11,7 @@ using Microsoft.EntityFrameworkCore;
using BMA.EHR.Domain.Models.Commands.Core;
using BMA.EHR.Domain.Models.Commands;
using BMA.EHR.Domain.Models.Insignias;
using BMA.EHR.Domain.Models.Retirement;
namespace BMA.EHR.Infrastructure.Persistence
{
@ -292,6 +293,14 @@ namespace BMA.EHR.Infrastructure.Persistence
#endregion
#region " Retirement "
public DbSet<RetirementPeriod> RetirementPeriods { get; set; }
public DbSet<RetirementProfile> RetirementProfiles { get; set; }
#endregion
public ApplicationDBContext(DbContextOptions<ApplicationDBContext> options) : base(options)
{
}