2023-06-26 14:02:04 +07:00
|
|
|
|
using BMA.EHR.Domain.Models.Base;
|
|
|
|
|
|
|
2023-06-26 15:18:39 +07:00
|
|
|
|
namespace BMA.EHR.Domain.Models.Organizations
|
2023-06-26 14:02:04 +07:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Link Profile กับ OrganizationPosition
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class ProfilePosition : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
public OrganizationPositionEntity OrganizationPosition { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public Guid OrganizationPositionId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public Guid? ProfileId { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|