Add Profile Table

This commit is contained in:
Suphonchai Phoonsawat 2023-06-26 15:18:39 +07:00
parent aa691fe65f
commit 68dab7a727
69 changed files with 18537 additions and 84 deletions

View file

@ -0,0 +1,16 @@
using BMA.EHR.Domain.Models.Base;
namespace BMA.EHR.Domain.Models.Organizations
{
/// <summary>
/// Link Profile กับ OrganizationPosition
/// </summary>
public class ProfilePosition : EntityBase
{
public OrganizationPositionEntity OrganizationPosition { get; set; }
public Guid OrganizationPositionId { get; set; }
public Guid? ProfileId { get; set; }
}
}