2023-06-26 14:02:04 +07:00
|
|
|
|
using BMA.EHR.Domain.Models.Base;
|
2023-07-05 16:22:44 +07:00
|
|
|
|
using BMA.EHR.Domain.Models.HR;
|
2023-06-26 14:02:04 +07:00
|
|
|
|
|
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
|
|
|
|
|
|
{
|
2023-07-05 16:22:44 +07:00
|
|
|
|
public OrganizationPositionEntity? OrganizationPosition { get; set; }
|
2023-06-26 14:02:04 +07:00
|
|
|
|
|
2024-06-25 00:54:16 +07:00
|
|
|
|
public Profile? Profile { get; set; }
|
|
|
|
|
|
|
2023-08-16 16:44:36 +07:00
|
|
|
|
public bool IsActive { get; set; } = true;
|
|
|
|
|
|
public bool IsPublished { get; set; } = true;
|
2023-06-26 14:02:04 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|