api เกษียณ

This commit is contained in:
Kittapath 2023-07-22 22:14:50 +07:00
parent 25274562c8
commit 6d655f3f3b
29 changed files with 27484 additions and 46 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)
{
}