2023-08-11 01:57:09 +07:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Placement.Service.Requests
|
|
|
|
|
|
{
|
|
|
|
|
|
public class PlacementRepatriationEditRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Organization { get; set; }
|
|
|
|
|
|
public string Reason { get; set; }
|
|
|
|
|
|
public string? OrganizationPositionOld { get; set; }
|
|
|
|
|
|
public DateTime? Date { get; set; }
|
2023-09-28 12:51:36 +07:00
|
|
|
|
public DateTime? DateRepatriation { get; set; }
|
2023-08-11 01:57:09 +07:00
|
|
|
|
public string? PositionTypeOld { get; set; }
|
|
|
|
|
|
public string? PositionLevelOld { get; set; }
|
|
|
|
|
|
public string? PositionNumberOld { get; set; }
|
|
|
|
|
|
public double? AmountOld { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|