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,25 @@

namespace BMA.EHR.Recurit.Exam.Service.Response
{
public class CandidateAddressResponseItem
{
public string? RegistAddress { get; set; }
public Models.Province? RegistProvince { get; set; }
public string? RegistProvinceId { get; set; }
public Models.District? RegistDistrict { get; set; }
public string? RegistDistrictId { get; set; }
public Models.SubDistrict? RegistSubDistrict { get; set; }
public string? RegistSubDistrictId { get; set; }
public string? RegistZipCode { get; set; }
public bool? RegistSame { get; set; }
public string? CurrentAddress { get; set; }
public Models.Province? CurrentProvince { get; set; }
public string? CurrentProvinceId { get; set; }
public Models.District? CurrentDistrict { get; set; }
public string? CurrentDistrictId { get; set; }
public Models.SubDistrict? CurrentSubDistrict { get; set; }
public string? CurrentSubDistrictId { get; set; }
public string? CurrentZipCode { get; set; }
}
}