api บันทึก และ แสดง ข้อมูลผู้สมัคร
This commit is contained in:
parent
ffeab6a127
commit
a781c375d7
40 changed files with 10433 additions and 2 deletions
25
Response/CandidateAddressResponseItem.cs
Normal file
25
Response/CandidateAddressResponseItem.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
||||
13
Response/CandidateCareerResponseItem.cs
Normal file
13
Response/CandidateCareerResponseItem.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Response
|
||||
{
|
||||
public class CandidateCareerResponseItem
|
||||
{
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public string Position { get; set; } = string.Empty;
|
||||
public int Salary { get; set; }
|
||||
public DateTime DurationStart { get; set; }
|
||||
public DateTime DurationEnd { get; set; }
|
||||
public string Reason { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
13
Response/CandidateEducationResponseItem.cs
Normal file
13
Response/CandidateEducationResponseItem.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Response
|
||||
{
|
||||
public class CandidateEducationResponseItem
|
||||
{
|
||||
public string EducationLevelId { get; set; } = string.Empty;
|
||||
public string Major { get; set; } = string.Empty;
|
||||
public int Scores { get; set; }
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public DateTime DurationStart { get; set; }
|
||||
public DateTime DurationEnd { get; set; }
|
||||
}
|
||||
}
|
||||
20
Response/CandidateFamilyResponseItem.cs
Normal file
20
Response/CandidateFamilyResponseItem.cs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Response
|
||||
{
|
||||
public class CandidateFamilyResponseItem
|
||||
{
|
||||
public bool? Marry { get; set; }
|
||||
public Models.Prefix? MarryPrefix { get; set; }
|
||||
public string? MarryPrefixId { get; set; }
|
||||
public string? MarryFirstName { get; set; }
|
||||
public string? MarryLastName { get; set; }
|
||||
public Models.Prefix? FatherPrefix { get; set; }
|
||||
public string? FatherPrefixId { get; set; }
|
||||
public string? FatherFirstName { get; set; }
|
||||
public string? FatherLastName { get; set; }
|
||||
public Models.Prefix? MotherPrefix { get; set; }
|
||||
public string? MotherPrefixId { get; set; }
|
||||
public string? MotherFirstName { get; set; }
|
||||
public string? MotherLastName { get; set; }
|
||||
}
|
||||
}
|
||||
17
Response/CandidateInformationResponseItem.cs
Normal file
17
Response/CandidateInformationResponseItem.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
16
Response/CandidateOccupationResponseItem.cs
Normal file
16
Response/CandidateOccupationResponseItem.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Response
|
||||
{
|
||||
public class CandidateOccupationResponseItem
|
||||
{
|
||||
public string? OccupationType { get; set; }
|
||||
|
||||
public string? OccupationCompany { get; set; }
|
||||
|
||||
public string? OccupationDepartment { get; set; }
|
||||
|
||||
public string? OccupationEmail { get; set; }
|
||||
|
||||
public string? OccupationTelephone { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue