2023-07-16 20:01:24 +07:00
|
|
|
|
using BMA.EHR.MetaData.Service.Models;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal;
|
2023-05-10 20:11:47 +07:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
2023-07-16 20:01:24 +07:00
|
|
|
|
namespace BMA.EHR.Organization.Service.Models
|
2023-05-10 20:11:47 +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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|