2023-08-11 01:57:09 +07:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Placement.Service.Requests
|
|
|
|
|
|
{
|
|
|
|
|
|
public class PlacementReceiveEditRequest
|
|
|
|
|
|
{
|
2024-05-02 09:31:38 +07:00
|
|
|
|
public string citizenId { get; set; }
|
|
|
|
|
|
public string prefix { get; set; }
|
|
|
|
|
|
public string firstName { get; set; }
|
|
|
|
|
|
public string lastName { get; set; }
|
2023-08-11 01:57:09 +07:00
|
|
|
|
public DateTime DateOfBirth { get; set; }
|
2024-05-23 17:07:55 +07:00
|
|
|
|
public string? Gender { get; set; }
|
2023-08-11 01:57:09 +07:00
|
|
|
|
public string? Nationality { get; set; }
|
|
|
|
|
|
public string? Race { get; set; }
|
2024-05-23 17:07:55 +07:00
|
|
|
|
public string? Religion { get; set; }
|
|
|
|
|
|
public string? BloodGroup { get; set; }
|
|
|
|
|
|
public string? Relationship { get; set; }
|
2023-08-11 01:57:09 +07:00
|
|
|
|
public string? TelephoneNumber { get; set; }
|
|
|
|
|
|
public string? Reason { get; set; }
|
|
|
|
|
|
public string? EducationOld { get; set; }
|
|
|
|
|
|
public string? OrganizationPositionOld { get; set; }
|
|
|
|
|
|
public string? PositionTypeOld { get; set; }
|
|
|
|
|
|
public string? PositionLevelOld { get; set; }
|
|
|
|
|
|
public string? PositionNumberOld { get; set; }
|
2023-08-16 15:14:29 +07:00
|
|
|
|
public double? Amount { get; set; }
|
2023-08-11 01:57:09 +07:00
|
|
|
|
public double? AmountOld { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|