2023-08-05 17:53:07 +07:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Placement.Service.Requests
|
|
|
|
|
|
{
|
|
|
|
|
|
public class PlacementReceiveRequest
|
|
|
|
|
|
{
|
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-09-26 20:24:45 +07:00
|
|
|
|
public DateTime BirthDate { get; set; }
|
2024-05-23 17:07:55 +07:00
|
|
|
|
public string? Gender { get; set; }
|
2023-08-05 17:53:07 +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-05 17:53:07 +07:00
|
|
|
|
public string? TelephoneNumber { get; set; }
|
|
|
|
|
|
public List<FormFile>? File { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|