12 lines
No EOL
377 B
C#
12 lines
No EOL
377 B
C#
using BMA.EHR.Domain.Models.Base;
|
|
using BMA.EHR.Domain.Models.HR;
|
|
using BMA.EHR.Domain.Models.MetaData;
|
|
|
|
namespace BMA.EHR.Domain.Models.OrganizationEmployee
|
|
{
|
|
public class OrganizationPositionEmployeeLevel : EntityBase
|
|
{
|
|
public OrgEmployee? OrganizationEmployee { get; set; }
|
|
public PositionEmployeeLevel? PositionEmployeeLevel { get; set; }
|
|
}
|
|
} |