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; }
}
}

View 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;
}
}

View 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; }
}
}

View 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; }
}
}

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;
}
}

View 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; }
}
}