2023-08-11 01:57:09 +07:00
|
|
|
using BMA.EHR.Domain.Models.MetaData;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Retirement.Service.Requests
|
|
|
|
|
{
|
2023-08-16 02:35:43 +07:00
|
|
|
public class PersonSelectPositionOtherRequest
|
2023-08-11 01:57:09 +07:00
|
|
|
{
|
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|