api บันทึก และ แสดง ข้อมูลผู้สมัคร

This commit is contained in:
Kittapath 2023-03-23 21:41:26 +07:00
parent ffeab6a127
commit a781c375d7
40 changed files with 10433 additions and 2 deletions

View file

@ -0,0 +1,17 @@

namespace BMA.EHR.Recurit.Exam.Service.Response
{
public class CandidateInformationResponseItem
{
public Models.Prefix? Prefix { get; set; }
public string? PrefixId { get; set; }
public string? FirstName { get; set; } = string.Empty;
public string? LastName { get; set; } = string.Empty;
public string? Nationality { get; set; } = string.Empty;
public DateTime? DateOfBirth { get; set; }
public Models.Relationship? Relationship { get; set; }
public string? RelationshipId { get; set; }
public string? Email { get; set; } = string.Empty;
public string? CitizenId { get; set; } = string.Empty;
}
}