2023-08-11 01:57:09 +07:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Placement.Service.Requests
|
|
|
|
|
|
{
|
|
|
|
|
|
public class PlacementOfficerEditRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Organization { get; set; }
|
|
|
|
|
|
public string Reason { get; set; }
|
|
|
|
|
|
public string? OrganizationPositionOld { get; set; }
|
2023-08-19 21:03:17 +07:00
|
|
|
|
public DateTime? DateStart { get; set; }
|
|
|
|
|
|
public DateTime? DateEnd { 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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|