api cms แก้หน้าสมัครสอบ

This commit is contained in:
Kittapath 2023-04-07 16:26:11 +07:00
parent c986fc1500
commit 9486ad160d
21 changed files with 9389 additions and 0 deletions

View file

@ -0,0 +1,25 @@
using System.Net;
namespace BMA.EHR.Recurit.Exam.Service.Request
{
public class RequestCMSAbout
{
public string? BannerImg { get; set; }
// public Models.Document? BannerImgId { get; set; }
public string? ProfileImg { get; set; }
// public Models.Document? ProfileImgId { get; set; }
public string? NameTh { get; set; }
public string? NameEn { get; set; }
public string? Description { get; set; }
public string? About { get; set; }
public string? Address { get; set; }
// public Models.Province? Province { get; set; }
public string? ProvinceId { get; set; }
// public Models.District? District { get; set; }
public string? DistrictId { get; set; }
// public Models.SubDistrict? SubDistrict { get; set; }
public string? SubDistrictId { get; set; }
public string? ZipCode { get; set; }
public string? Telephone { get; set; }
}
}

View file

@ -0,0 +1,14 @@
using System.Net;
namespace BMA.EHR.Recurit.Exam.Service.Request
{
public class RequestAgency
{
public List<RequestCMSAgency> Agency { get; set; }
}
public class RequestCMSAgency
{
public string? Name { get; set; }
public string? Link { get; set; }
}
}

View file

@ -0,0 +1,11 @@
using System.Net;
namespace BMA.EHR.Recurit.Exam.Service.Request
{
public class RequestCMSDetail
{
public string? NameTh { get; set; }
public string? NameEn { get; set; }
public string? Description { get; set; }
}
}

View file

@ -0,0 +1,14 @@
using System.Net;
namespace BMA.EHR.Recurit.Exam.Service.Request
{
public class RequestGovernment
{
public List<RequestCMSGovernment> Government { get; set; }
}
public class RequestCMSGovernment
{
public string? Name { get; set; }
public string? Link { get; set; }
}
}