21 lines
701 B
C#
21 lines
701 B
C#
using BMA.EHR.Domain.Models.Base;
|
|
using BMA.EHR.Domain.Models.MetaData;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace BMA.EHR.Domain.Models.Organizations
|
|
{
|
|
public class AvailablePositionLevelEntity : EntityBase
|
|
{
|
|
|
|
// [ForeignKey("PositionMasterId")]
|
|
// public PositionMasterEntity? PositionMaster_PositionMasterId { get; set; }
|
|
|
|
[Column(Order = 2), Comment("PositionMasterId")]
|
|
public PositionMasterEntity? PositionMaster { get; set; }
|
|
|
|
[Column(Order = 3), Comment("PositionLevelId")]
|
|
public PositionLevel? PositionLevel { get; set; }
|
|
}
|
|
}
|