16 lines
No EOL
533 B
C#
16 lines
No EOL
533 B
C#
using BMA.EHR.Domain.Models.MetaData;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Placement.Service.Requests
|
|
{
|
|
public class PersonSelectPositionReceiveRequest
|
|
{
|
|
public DateTime? RecruitDate { get; set; }
|
|
public Guid? PosNoId { get; set; }
|
|
public Guid? PositionId { get; set; }
|
|
public Guid? PositionLevelId { get; set; }
|
|
public Guid? PositionLineId { get; set; }
|
|
public Guid? PositionPathSideId { get; set; }
|
|
public Guid? PositionTypeId { get; set; }
|
|
}
|
|
} |