2023-03-23 21:41:26 +07:00
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CandidateInformationResponseItem
|
|
|
|
|
|
{
|
2023-04-10 16:28:05 +07:00
|
|
|
|
// public Models.Prefix? Prefix { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? PrefixId { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
public string? Prefix { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
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; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
// public Models.Relationship? Relationship { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? RelationshipId { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
public string? Relationship { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string? Email { get; set; } = string.Empty;
|
|
|
|
|
|
public string? CitizenId { get; set; } = string.Empty;
|
2023-04-10 16:28:05 +07:00
|
|
|
|
// public Models.Province? CitizenProvince { get; set; }
|
2023-03-24 11:50:46 +07:00
|
|
|
|
public string? CitizenProvinceId { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
public string? CitizenProvince { get; set; }
|
|
|
|
|
|
// public Models.District? CitizenDistrict { get; set; }
|
2023-03-24 11:50:46 +07:00
|
|
|
|
public string? CitizenDistrictId { get; set; }
|
2023-04-10 16:28:05 +07:00
|
|
|
|
public string? CitizenDistrict { get; set; }
|
2023-03-24 11:50:46 +07:00
|
|
|
|
public DateTime? CitizenDate { get; set; }
|
2023-03-24 13:38:26 +07:00
|
|
|
|
public string? Telephone { get; set; }
|
|
|
|
|
|
public string? MobilePhone { get; set; }
|
|
|
|
|
|
public string? Knowledge { get; set; }
|
2023-04-09 04:22:04 +07:00
|
|
|
|
public string? ProfileImg { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|