26 lines
682 B
C#
26 lines
682 B
C#
|
|
using BMA.EHR.Organization.Service.Models;
|
|
using BMA.EHR.Report.Service.Models;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace BMA.EHR.Profile.Service.Models
|
|
{
|
|
public class AvailablePositionLevelEntity : EntityBase
|
|
{
|
|
|
|
[ForeignKey("PositionMasterId")]
|
|
public PositionMasterEntity? PositionMaster_PositionMasterId { get; set; }
|
|
|
|
[Column(Order = 2), Comment("PositionMasterId")]
|
|
public Guid? PositionMasterId { get; set; }
|
|
|
|
[Column(Order = 3), Comment("PositionLevelId")]
|
|
public Guid? PositionLevelId { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|