diff --git a/Controllers/RecruitController.cs b/Controllers/RecruitController.cs index 0927d11..7640d17 100644 --- a/Controllers/RecruitController.cs +++ b/Controllers/RecruitController.cs @@ -22,6 +22,7 @@ using Sentry; using Swashbuckle.AspNetCore.Annotations; using System.Data; using System.Net; +using System.Net.Http.Headers; using System.Net.WebSockets; using System.Security.Claims; using System.Text; @@ -47,6 +48,7 @@ namespace BMA.EHR.Recruit.Service.Controllers private readonly PermissionRepository _permission; private readonly IHttpContextAccessor _httpContextAccessor; private readonly ILogger _logger; + private readonly IConfiguration _configuration; //private readonly DateTimeExtension; #endregion @@ -60,6 +62,7 @@ namespace BMA.EHR.Recruit.Service.Controllers RecruitService recruitService, IHttpContextAccessor httpContextAccessor, ILogger logger, + IConfiguration configuration, PermissionRepository permission //DateTimeExtension extensions ) @@ -70,6 +73,7 @@ namespace BMA.EHR.Recruit.Service.Controllers _webHostEnvironment = webHostEnvironment; _recruitService = recruitService; _httpContextAccessor = httpContextAccessor; + _configuration = configuration; _logger = logger; _permission = permission; //_extensions = extensions; @@ -82,6 +86,7 @@ namespace BMA.EHR.Recruit.Service.Controllers private string? UserId => _httpContextAccessor?.HttpContext?.User?.FindFirst(ClaimTypes.NameIdentifier)?.Value; private string? FullName => _httpContextAccessor?.HttpContext?.User?.FindFirst("name")?.Value; + private string? token => _httpContextAccessor.HttpContext.Request.Headers["Authorization"]; #endregion @@ -1308,6 +1313,28 @@ namespace BMA.EHR.Recruit.Service.Controllers imported.Scores.Add(r); row++; + var recruit = await _context.Recruits.AsQueryable() + .Include(x => x.RecruitImport) + .Where(x => x.RecruitImport == rec_import && x.ExamId == r.ExamId) + .FirstOrDefaultAsync(); + if (recruit != null) + { + var apiUrl = $"{_configuration["API"]}/org/find/head/officer"; + using (var client = new HttpClient()) + { + client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token.Replace("Bearer ", "")); + client.DefaultRequestHeaders.Add("api_key", _configuration["API_KEY"]); + var _req = new HttpRequestMessage(HttpMethod.Get, apiUrl); + var _res = await client.SendAsync(_req); + var _result = await _res.Content.ReadAsStringAsync(); + if (_res.IsSuccessStatusCode) + { + var org = JsonConvert.DeserializeObject(_result); + recruit.AuthName = org.result.name == null ? "" : org.result.name; + recruit.AuthPosition = org.result.position == null ? "" : org.result.position; + } + } + } } } } diff --git a/Migrations/20250218054142_update table Recruit add AuthName.Designer.cs b/Migrations/20250218054142_update table Recruit add AuthName.Designer.cs new file mode 100644 index 0000000..6a3dda3 --- /dev/null +++ b/Migrations/20250218054142_update table Recruit add AuthName.Designer.cs @@ -0,0 +1,1546 @@ +// +using System; +using BMA.EHR.Recruit.Service.Data; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace BMA.EHR.Recruit.Service.Migrations +{ + [DbContext(typeof(ApplicationDbContext))] + [Migration("20250218054142_update table Recruit add AuthName")] + partial class updatetableRecruitaddAuthName + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "7.0.3") + .HasAnnotation("Relational:MaxIdentifierLength", 64); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Documents.Document", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)"); + + b.Property("CreatedDate") + .HasColumnType("datetime(6)"); + + b.Property("Detail") + .IsRequired() + .HasColumnType("text"); + + b.Property("FileName") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("varchar(255)"); + + b.Property("FileSize") + .HasColumnType("int"); + + b.Property("FileType") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("varchar(128)"); + + b.Property("ObjectRefId") + .HasColumnType("char(36)"); + + b.HasKey("Id"); + + b.ToTable("Documents"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("ApplyDate") + .HasColumnType("datetime(6)"); + + b.Property("AuthName") + .HasColumnType("longtext"); + + b.Property("AuthPosition") + .HasColumnType("longtext"); + + b.Property("CitizenCardExpireDate") + .HasColumnType("datetime(6)"); + + b.Property("CitizenCardIssuer") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("CitizenId") + .IsRequired() + .HasMaxLength(13) + .HasColumnType("varchar(13)") + .HasComment("เลขประจำตัวประชาชน"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedDate") + .HasColumnType("datetime(6)"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("DateOfBirth") + .HasColumnType("datetime(6)"); + + b.Property("ExamId") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("FirstName") + .IsRequired() + .HasMaxLength(150) + .HasColumnType("varchar(150)"); + + b.Property("Gendor") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("varchar(20)"); + + b.Property("Isspecial") + .IsRequired() + .HasMaxLength(1) + .HasColumnType("varchar(1)"); + + b.Property("LastName") + .IsRequired() + .HasMaxLength(150) + .HasColumnType("varchar(150)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("Marry") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("varchar(20)"); + + b.Property("ModifiedDate") + .HasColumnType("datetime(6)"); + + b.Property("National") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("PositionLevel") + .HasColumnType("longtext"); + + b.Property("PositionName") + .HasColumnType("longtext"); + + b.Property("PositionType") + .HasColumnType("longtext"); + + b.Property("Prefix") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("Qualified") + .IsRequired() + .HasMaxLength(1) + .HasColumnType("varchar(1)"); + + b.Property("Race") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("RecruitImportId") + .HasColumnType("char(36)"); + + b.Property("RefNo") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("varchar(20)"); + + b.Property("Religion") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Remark") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.HasKey("Id"); + + b.HasIndex("RecruitImportId"); + + b.ToTable("Recruits"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitAddress", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("Address") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Address1") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Amphur") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Amphur1") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("District") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("District1") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("Mobile") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Moo") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Moo1") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Province") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Province1") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("RecruitId") + .HasColumnType("char(36)"); + + b.Property("Road") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Road1") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Soi") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Soi1") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Telephone") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("ZipCode") + .IsRequired() + .HasMaxLength(5) + .HasColumnType("varchar(5)"); + + b.Property("ZipCode1") + .IsRequired() + .HasMaxLength(5) + .HasColumnType("varchar(5)"); + + b.HasKey("Id"); + + b.HasIndex("RecruitId"); + + b.ToTable("RecruitAddresses"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitCertificate", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("CertificateNo") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("Description") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("ExpiredDate") + .HasColumnType("datetime(6)"); + + b.Property("IssueDate") + .HasColumnType("datetime(6)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("RecruitId") + .HasColumnType("char(36)"); + + b.HasKey("Id"); + + b.HasIndex("RecruitId"); + + b.ToTable("RecruitCertificates"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitDocument", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedDate") + .HasColumnType("datetime(6)"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("DocumentFileId") + .HasColumnType("char(36)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("RecruitId") + .HasColumnType("char(36)"); + + b.HasKey("Id"); + + b.HasIndex("DocumentFileId"); + + b.HasIndex("RecruitId"); + + b.ToTable("RecruitDocuments"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitEducation", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("BachelorDate") + .HasColumnType("datetime(6)"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("Degree") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("GPA") + .HasColumnType("double"); + + b.Property("HighDegree") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("Major") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("MajorGroupId") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("varchar(20)"); + + b.Property("MajorGroupName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("RecruitId") + .HasColumnType("char(36)"); + + b.Property("Specialist") + .IsRequired() + .HasMaxLength(1000) + .HasColumnType("varchar(1000)"); + + b.Property("University") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.HasKey("Id"); + + b.HasIndex("RecruitId"); + + b.ToTable("RecruitEducations"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("AnnouncementDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(14) + .HasComment("วันที่ประกาศผลสอบ"); + + b.Property("AnnouncementEndDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(7) + .HasComment("วันสิ้นสุดประกาศ"); + + b.Property("AnnouncementStartDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(6) + .HasComment("วันเริ่มประกาศ"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("Detail") + .HasColumnType("longtext") + .HasColumnOrder(4) + .HasComment("รายละเอียด"); + + b.Property("ExamDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(12) + .HasComment("วันที่สอบ"); + + b.Property("Fee") + .HasColumnType("int") + .HasColumnOrder(5) + .HasComment("ค่าธรรมเนียม"); + + b.Property("ImportFileId") + .HasColumnType("char(36)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(250) + .HasColumnType("varchar(250)") + .HasColumnOrder(2) + .HasComment("รอบการสอบ"); + + b.Property("Note") + .HasColumnType("text") + .HasColumnOrder(13) + .HasComment("หมายเหตุ"); + + b.Property("Order") + .HasColumnType("int") + .HasColumnOrder(3) + .HasComment("ครั้งที่"); + + b.Property("PaymentEndDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(9) + .HasComment("วันสิ้นสุดชำระเงิน"); + + b.Property("PaymentStartDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(8) + .HasComment("วันเริ่มชำระเงิน"); + + b.Property("RegisterEndDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(11) + .HasComment("วันสิ้นสุดสมัครสอบ"); + + b.Property("RegisterStartDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(10) + .HasComment("วันเริ่มสมัครสอบ"); + + b.Property("Year") + .HasColumnType("int") + .HasColumnOrder(1) + .HasComment("ปีงบประมาณที่จัดสอบ"); + + b.HasKey("Id"); + + b.HasIndex("ImportFileId"); + + b.ToTable("RecruitImports"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportDocument", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("DocumentId") + .HasColumnType("char(36)") + .HasComment("Id เอกสาร"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("RecruitImportId") + .HasColumnType("char(36)") + .HasComment("Id รอบสมัครสอบ"); + + b.HasKey("Id"); + + b.HasIndex("DocumentId"); + + b.HasIndex("RecruitImportId"); + + b.ToTable("RecruitImportDocuments"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportHistory", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("Description") + .IsRequired() + .HasColumnType("longtext") + .HasColumnOrder(1) + .HasComment("รายละเอียดการนำเข้า"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("RecruitImportId") + .HasColumnType("char(36)"); + + b.HasKey("Id"); + + b.HasIndex("RecruitImportId"); + + b.ToTable("RecruitImportHistories"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportImage", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("DocumentId") + .HasColumnType("char(36)") + .HasComment("Id ไฟล์รูป"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("RecruitImportId") + .HasColumnType("char(36)") + .HasComment("Id รอบสมัครสอบ"); + + b.HasKey("Id"); + + b.HasIndex("DocumentId"); + + b.HasIndex("RecruitImportId"); + + b.ToTable("RecruitImportImages"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitOccupation", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("Occupation") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Position") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("RecruitId") + .HasColumnType("char(36)"); + + b.Property("Telephone") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("WorkAge") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Workplace") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.HasKey("Id"); + + b.HasIndex("RecruitId"); + + b.ToTable("RecruitOccupations"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitPayment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("AccountNumber") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("Amount") + .HasColumnType("decimal(65,30)"); + + b.Property("BankCode") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("ChequeNo") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("ChqueBankCode") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("CompanyCode") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("CreditDebit") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("CustomerName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("PaymentId") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("PaymentType") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("RecruitId") + .HasColumnType("char(36)"); + + b.Property("RefNo1") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("TellerId") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("TermBranch") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("TextFile") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("TransDate") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("TransTime") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.HasKey("Id"); + + b.HasIndex("RecruitId"); + + b.ToTable("RecruitPayments"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitScore", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("ABStatus") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("AStatus") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("BStatus") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("CStatus") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("ExamId") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("ExamStatus") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("FullA") + .HasColumnType("int"); + + b.Property("FullB") + .HasColumnType("int"); + + b.Property("FullC") + .HasColumnType("int"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("Major") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Number") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasComment("ลำดับที่สอบได้"); + + b.Property("PercentageA") + .HasColumnType("double"); + + b.Property("PercentageB") + .HasColumnType("double"); + + b.Property("PercentageC") + .HasColumnType("double"); + + b.Property("ScoreImportId") + .HasColumnType("char(36)"); + + b.Property("SumA") + .HasColumnType("int"); + + b.Property("SumAB") + .HasColumnType("int"); + + b.Property("SumB") + .HasColumnType("int"); + + b.Property("SumC") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.HasIndex("ScoreImportId"); + + b.ToTable("RecruitScores"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.ScoreImport", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("ImportFileId") + .HasColumnType("char(36)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("RecruitImportId") + .HasColumnType("char(36)"); + + b.Property("Year") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.HasIndex("ImportFileId"); + + b.HasIndex("RecruitImportId") + .IsUnique(); + + b.ToTable("ScoreImports"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", "RecruitImport") + .WithMany("Recruits") + .HasForeignKey("RecruitImportId") + .OnDelete(DeleteBehavior.Cascade); + + b.Navigation("RecruitImport"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitAddress", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") + .WithMany("Addresses") + .HasForeignKey("RecruitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Recruit"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitCertificate", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") + .WithMany("Certificates") + .HasForeignKey("RecruitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Recruit"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitDocument", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Documents.Document", "DocumentFile") + .WithMany() + .HasForeignKey("DocumentFileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") + .WithMany("Documents") + .HasForeignKey("RecruitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DocumentFile"); + + b.Navigation("Recruit"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitEducation", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") + .WithMany("Educations") + .HasForeignKey("RecruitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Recruit"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Documents.Document", "ImportFile") + .WithMany() + .HasForeignKey("ImportFileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("ImportFile"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportDocument", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Documents.Document", "Document") + .WithMany() + .HasForeignKey("DocumentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", "RecruitImport") + .WithMany("RecruitDocuments") + .HasForeignKey("RecruitImportId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Document"); + + b.Navigation("RecruitImport"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportHistory", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", "RecruitImport") + .WithMany("ImportHostories") + .HasForeignKey("RecruitImportId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("RecruitImport"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportImage", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Documents.Document", "Document") + .WithMany() + .HasForeignKey("DocumentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", "RecruitImport") + .WithMany("RecruitImages") + .HasForeignKey("RecruitImportId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Document"); + + b.Navigation("RecruitImport"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitOccupation", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") + .WithMany("Occupations") + .HasForeignKey("RecruitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Recruit"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitPayment", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") + .WithMany("Payments") + .HasForeignKey("RecruitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Recruit"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitScore", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.ScoreImport", "ScoreImport") + .WithMany("Scores") + .HasForeignKey("ScoreImportId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("ScoreImport"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.ScoreImport", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Documents.Document", "ImportFile") + .WithMany() + .HasForeignKey("ImportFileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", "RecruitImport") + .WithOne("ScoreImport") + .HasForeignKey("BMA.EHR.Recruit.Service.Models.Recruits.ScoreImport", "RecruitImportId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("ImportFile"); + + b.Navigation("RecruitImport"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", b => + { + b.Navigation("Addresses"); + + b.Navigation("Certificates"); + + b.Navigation("Documents"); + + b.Navigation("Educations"); + + b.Navigation("Occupations"); + + b.Navigation("Payments"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", b => + { + b.Navigation("ImportHostories"); + + b.Navigation("RecruitDocuments"); + + b.Navigation("RecruitImages"); + + b.Navigation("Recruits"); + + b.Navigation("ScoreImport") + .IsRequired(); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.ScoreImport", b => + { + b.Navigation("Scores"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Migrations/20250218054142_update table Recruit add AuthName.cs b/Migrations/20250218054142_update table Recruit add AuthName.cs new file mode 100644 index 0000000..8077bba --- /dev/null +++ b/Migrations/20250218054142_update table Recruit add AuthName.cs @@ -0,0 +1,40 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace BMA.EHR.Recruit.Service.Migrations +{ + /// + public partial class updatetableRecruitaddAuthName : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "AuthName", + table: "Recruits", + type: "longtext", + nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"); + + migrationBuilder.AddColumn( + name: "AuthPosition", + table: "Recruits", + type: "longtext", + nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "AuthName", + table: "Recruits"); + + migrationBuilder.DropColumn( + name: "AuthPosition", + table: "Recruits"); + } + } +} diff --git a/Migrations/ApplicationDbContextModelSnapshot.cs b/Migrations/ApplicationDbContextModelSnapshot.cs index e23deb5..e7cceee 100644 --- a/Migrations/ApplicationDbContextModelSnapshot.cs +++ b/Migrations/ApplicationDbContextModelSnapshot.cs @@ -1,1537 +1,1543 @@ -// -using System; -using BMA.EHR.Recruit.Service.Data; -using Microsoft.EntityFrameworkCore; -using Microsoft.EntityFrameworkCore.Infrastructure; -using Microsoft.EntityFrameworkCore.Storage.ValueConversion; - -#nullable disable - -namespace BMA.EHR.Recruit.Service.Migrations -{ - [DbContext(typeof(ApplicationDbContext))] - partial class ApplicationDbContextModelSnapshot : ModelSnapshot - { - protected override void BuildModel(ModelBuilder modelBuilder) - { -#pragma warning disable 612, 618 - modelBuilder - .HasAnnotation("ProductVersion", "7.0.3") - .HasAnnotation("Relational:MaxIdentifierLength", 64); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Documents.Document", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("char(36)"); - - b.Property("CreatedDate") - .HasColumnType("datetime(6)"); - - b.Property("Detail") - .IsRequired() - .HasColumnType("text"); - - b.Property("FileName") - .IsRequired() - .HasMaxLength(255) - .HasColumnType("varchar(255)"); - - b.Property("FileSize") - .HasColumnType("int"); - - b.Property("FileType") - .IsRequired() - .HasMaxLength(128) - .HasColumnType("varchar(128)"); - - b.Property("ObjectRefId") - .HasColumnType("char(36)"); - - b.HasKey("Id"); - - b.ToTable("Documents"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("char(36)") - .HasColumnOrder(0) - .HasComment("PrimaryKey") - .HasAnnotation("Relational:JsonPropertyName", "id"); - - b.Property("ApplyDate") - .HasColumnType("datetime(6)"); - - b.Property("CitizenCardExpireDate") - .HasColumnType("datetime(6)"); - - b.Property("CitizenCardIssuer") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("CitizenId") - .IsRequired() - .HasMaxLength(13) - .HasColumnType("varchar(13)") - .HasComment("เลขประจำตัวประชาชน"); - - b.Property("CreatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(100) - .HasComment("สร้างข้อมูลเมื่อ"); - - b.Property("CreatedDate") - .HasColumnType("datetime(6)"); - - b.Property("CreatedFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(104) - .HasComment("ชื่อ User ที่สร้างข้อมูล"); - - b.Property("CreatedUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(101) - .HasComment("User Id ที่สร้างข้อมูล"); - - b.Property("DateOfBirth") - .HasColumnType("datetime(6)"); - - b.Property("ExamId") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("FirstName") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("varchar(150)"); - - b.Property("Gendor") - .IsRequired() - .HasMaxLength(20) - .HasColumnType("varchar(20)"); - - b.Property("Isspecial") - .IsRequired() - .HasMaxLength(1) - .HasColumnType("varchar(1)"); - - b.Property("LastName") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("varchar(150)"); - - b.Property("LastUpdateFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(105) - .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdateUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(103) - .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(102) - .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); - - b.Property("Marry") - .IsRequired() - .HasMaxLength(20) - .HasColumnType("varchar(20)"); - - b.Property("ModifiedDate") - .HasColumnType("datetime(6)"); - - b.Property("National") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("PositionLevel") - .HasColumnType("longtext"); - - b.Property("PositionName") - .HasColumnType("longtext"); - - b.Property("PositionType") - .HasColumnType("longtext"); - - b.Property("Prefix") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("Qualified") - .IsRequired() - .HasMaxLength(1) - .HasColumnType("varchar(1)"); - - b.Property("Race") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("RecruitImportId") - .HasColumnType("char(36)"); - - b.Property("RefNo") - .IsRequired() - .HasMaxLength(20) - .HasColumnType("varchar(20)"); - - b.Property("Religion") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("Remark") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.HasKey("Id"); - - b.HasIndex("RecruitImportId"); - - b.ToTable("Recruits"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitAddress", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("char(36)") - .HasColumnOrder(0) - .HasComment("PrimaryKey") - .HasAnnotation("Relational:JsonPropertyName", "id"); - - b.Property("Address") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("Address1") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("Amphur") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("Amphur1") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("CreatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(100) - .HasComment("สร้างข้อมูลเมื่อ"); - - b.Property("CreatedFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(104) - .HasComment("ชื่อ User ที่สร้างข้อมูล"); - - b.Property("CreatedUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(101) - .HasComment("User Id ที่สร้างข้อมูล"); - - b.Property("District") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("District1") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("LastUpdateFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(105) - .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdateUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(103) - .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(102) - .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); - - b.Property("Mobile") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("Moo") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("Moo1") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("Province") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("Province1") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("RecruitId") - .HasColumnType("char(36)"); - - b.Property("Road") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("Road1") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("Soi") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("Soi1") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("Telephone") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("ZipCode") - .IsRequired() - .HasMaxLength(5) - .HasColumnType("varchar(5)"); - - b.Property("ZipCode1") - .IsRequired() - .HasMaxLength(5) - .HasColumnType("varchar(5)"); - - b.HasKey("Id"); - - b.HasIndex("RecruitId"); - - b.ToTable("RecruitAddresses"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitCertificate", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("char(36)") - .HasColumnOrder(0) - .HasComment("PrimaryKey") - .HasAnnotation("Relational:JsonPropertyName", "id"); - - b.Property("CertificateNo") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("CreatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(100) - .HasComment("สร้างข้อมูลเมื่อ"); - - b.Property("CreatedFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(104) - .HasComment("ชื่อ User ที่สร้างข้อมูล"); - - b.Property("CreatedUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(101) - .HasComment("User Id ที่สร้างข้อมูล"); - - b.Property("Description") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("ExpiredDate") - .HasColumnType("datetime(6)"); - - b.Property("IssueDate") - .HasColumnType("datetime(6)"); - - b.Property("LastUpdateFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(105) - .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdateUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(103) - .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(102) - .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); - - b.Property("RecruitId") - .HasColumnType("char(36)"); - - b.HasKey("Id"); - - b.HasIndex("RecruitId"); - - b.ToTable("RecruitCertificates"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitDocument", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("char(36)") - .HasColumnOrder(0) - .HasComment("PrimaryKey") - .HasAnnotation("Relational:JsonPropertyName", "id"); - - b.Property("CreatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(100) - .HasComment("สร้างข้อมูลเมื่อ"); - - b.Property("CreatedDate") - .HasColumnType("datetime(6)"); - - b.Property("CreatedFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(104) - .HasComment("ชื่อ User ที่สร้างข้อมูล"); - - b.Property("CreatedUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(101) - .HasComment("User Id ที่สร้างข้อมูล"); - - b.Property("DocumentFileId") - .HasColumnType("char(36)"); - - b.Property("LastUpdateFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(105) - .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdateUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(103) - .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(102) - .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); - - b.Property("RecruitId") - .HasColumnType("char(36)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentFileId"); - - b.HasIndex("RecruitId"); - - b.ToTable("RecruitDocuments"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitEducation", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("char(36)") - .HasColumnOrder(0) - .HasComment("PrimaryKey") - .HasAnnotation("Relational:JsonPropertyName", "id"); - - b.Property("BachelorDate") - .HasColumnType("datetime(6)"); - - b.Property("CreatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(100) - .HasComment("สร้างข้อมูลเมื่อ"); - - b.Property("CreatedFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(104) - .HasComment("ชื่อ User ที่สร้างข้อมูล"); - - b.Property("CreatedUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(101) - .HasComment("User Id ที่สร้างข้อมูล"); - - b.Property("Degree") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("GPA") - .HasColumnType("double"); - - b.Property("HighDegree") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("LastUpdateFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(105) - .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdateUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(103) - .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(102) - .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); - - b.Property("Major") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("MajorGroupId") - .IsRequired() - .HasMaxLength(20) - .HasColumnType("varchar(20)"); - - b.Property("MajorGroupName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("RecruitId") - .HasColumnType("char(36)"); - - b.Property("Specialist") - .IsRequired() - .HasMaxLength(1000) - .HasColumnType("varchar(1000)"); - - b.Property("University") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.HasKey("Id"); - - b.HasIndex("RecruitId"); - - b.ToTable("RecruitEducations"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("char(36)") - .HasColumnOrder(0) - .HasComment("PrimaryKey") - .HasAnnotation("Relational:JsonPropertyName", "id"); - - b.Property("AnnouncementDate") - .HasColumnType("datetime(6)") - .HasColumnOrder(14) - .HasComment("วันที่ประกาศผลสอบ"); - - b.Property("AnnouncementEndDate") - .HasColumnType("datetime(6)") - .HasColumnOrder(7) - .HasComment("วันสิ้นสุดประกาศ"); - - b.Property("AnnouncementStartDate") - .HasColumnType("datetime(6)") - .HasColumnOrder(6) - .HasComment("วันเริ่มประกาศ"); - - b.Property("CreatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(100) - .HasComment("สร้างข้อมูลเมื่อ"); - - b.Property("CreatedFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(104) - .HasComment("ชื่อ User ที่สร้างข้อมูล"); - - b.Property("CreatedUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(101) - .HasComment("User Id ที่สร้างข้อมูล"); - - b.Property("Detail") - .HasColumnType("longtext") - .HasColumnOrder(4) - .HasComment("รายละเอียด"); - - b.Property("ExamDate") - .HasColumnType("datetime(6)") - .HasColumnOrder(12) - .HasComment("วันที่สอบ"); - - b.Property("Fee") - .HasColumnType("int") - .HasColumnOrder(5) - .HasComment("ค่าธรรมเนียม"); - - b.Property("ImportFileId") - .HasColumnType("char(36)"); - - b.Property("LastUpdateFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(105) - .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdateUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(103) - .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(102) - .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); - - b.Property("Name") - .IsRequired() - .HasMaxLength(250) - .HasColumnType("varchar(250)") - .HasColumnOrder(2) - .HasComment("รอบการสอบ"); - - b.Property("Note") - .HasColumnType("text") - .HasColumnOrder(13) - .HasComment("หมายเหตุ"); - - b.Property("Order") - .HasColumnType("int") - .HasColumnOrder(3) - .HasComment("ครั้งที่"); - - b.Property("PaymentEndDate") - .HasColumnType("datetime(6)") - .HasColumnOrder(9) - .HasComment("วันสิ้นสุดชำระเงิน"); - - b.Property("PaymentStartDate") - .HasColumnType("datetime(6)") - .HasColumnOrder(8) - .HasComment("วันเริ่มชำระเงิน"); - - b.Property("RegisterEndDate") - .HasColumnType("datetime(6)") - .HasColumnOrder(11) - .HasComment("วันสิ้นสุดสมัครสอบ"); - - b.Property("RegisterStartDate") - .HasColumnType("datetime(6)") - .HasColumnOrder(10) - .HasComment("วันเริ่มสมัครสอบ"); - - b.Property("Year") - .HasColumnType("int") - .HasColumnOrder(1) - .HasComment("ปีงบประมาณที่จัดสอบ"); - - b.HasKey("Id"); - - b.HasIndex("ImportFileId"); - - b.ToTable("RecruitImports"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportDocument", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("char(36)") - .HasColumnOrder(0) - .HasComment("PrimaryKey") - .HasAnnotation("Relational:JsonPropertyName", "id"); - - b.Property("CreatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(100) - .HasComment("สร้างข้อมูลเมื่อ"); - - b.Property("CreatedFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(104) - .HasComment("ชื่อ User ที่สร้างข้อมูล"); - - b.Property("CreatedUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(101) - .HasComment("User Id ที่สร้างข้อมูล"); - - b.Property("DocumentId") - .HasColumnType("char(36)") - .HasComment("Id เอกสาร"); - - b.Property("LastUpdateFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(105) - .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdateUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(103) - .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(102) - .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); - - b.Property("RecruitImportId") - .HasColumnType("char(36)") - .HasComment("Id รอบสมัครสอบ"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("RecruitImportId"); - - b.ToTable("RecruitImportDocuments"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportHistory", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("char(36)") - .HasColumnOrder(0) - .HasComment("PrimaryKey") - .HasAnnotation("Relational:JsonPropertyName", "id"); - - b.Property("CreatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(100) - .HasComment("สร้างข้อมูลเมื่อ"); - - b.Property("CreatedFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(104) - .HasComment("ชื่อ User ที่สร้างข้อมูล"); - - b.Property("CreatedUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(101) - .HasComment("User Id ที่สร้างข้อมูล"); - - b.Property("Description") - .IsRequired() - .HasColumnType("longtext") - .HasColumnOrder(1) - .HasComment("รายละเอียดการนำเข้า"); - - b.Property("LastUpdateFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(105) - .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdateUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(103) - .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(102) - .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); - - b.Property("RecruitImportId") - .HasColumnType("char(36)"); - - b.HasKey("Id"); - - b.HasIndex("RecruitImportId"); - - b.ToTable("RecruitImportHistories"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportImage", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("char(36)") - .HasColumnOrder(0) - .HasComment("PrimaryKey") - .HasAnnotation("Relational:JsonPropertyName", "id"); - - b.Property("CreatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(100) - .HasComment("สร้างข้อมูลเมื่อ"); - - b.Property("CreatedFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(104) - .HasComment("ชื่อ User ที่สร้างข้อมูล"); - - b.Property("CreatedUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(101) - .HasComment("User Id ที่สร้างข้อมูล"); - - b.Property("DocumentId") - .HasColumnType("char(36)") - .HasComment("Id ไฟล์รูป"); - - b.Property("LastUpdateFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(105) - .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdateUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(103) - .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(102) - .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); - - b.Property("RecruitImportId") - .HasColumnType("char(36)") - .HasComment("Id รอบสมัครสอบ"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("RecruitImportId"); - - b.ToTable("RecruitImportImages"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitOccupation", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("char(36)") - .HasColumnOrder(0) - .HasComment("PrimaryKey") - .HasAnnotation("Relational:JsonPropertyName", "id"); - - b.Property("CreatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(100) - .HasComment("สร้างข้อมูลเมื่อ"); - - b.Property("CreatedFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(104) - .HasComment("ชื่อ User ที่สร้างข้อมูล"); - - b.Property("CreatedUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(101) - .HasComment("User Id ที่สร้างข้อมูล"); - - b.Property("LastUpdateFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(105) - .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdateUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(103) - .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(102) - .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); - - b.Property("Occupation") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("Position") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("RecruitId") - .HasColumnType("char(36)"); - - b.Property("Telephone") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("WorkAge") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("Workplace") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.HasKey("Id"); - - b.HasIndex("RecruitId"); - - b.ToTable("RecruitOccupations"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitPayment", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("char(36)") - .HasColumnOrder(0) - .HasComment("PrimaryKey") - .HasAnnotation("Relational:JsonPropertyName", "id"); - - b.Property("AccountNumber") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("Amount") - .HasColumnType("decimal(65,30)"); - - b.Property("BankCode") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("ChequeNo") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("ChqueBankCode") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("CompanyCode") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("CreatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(100) - .HasComment("สร้างข้อมูลเมื่อ"); - - b.Property("CreatedFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(104) - .HasComment("ชื่อ User ที่สร้างข้อมูล"); - - b.Property("CreatedUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(101) - .HasComment("User Id ที่สร้างข้อมูล"); - - b.Property("CreditDebit") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("CustomerName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("LastUpdateFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(105) - .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdateUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(103) - .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(102) - .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); - - b.Property("PaymentId") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("PaymentType") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("RecruitId") - .HasColumnType("char(36)"); - - b.Property("RefNo1") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("TellerId") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("TermBranch") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("TextFile") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("TransDate") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("TransTime") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.HasKey("Id"); - - b.HasIndex("RecruitId"); - - b.ToTable("RecruitPayments"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitScore", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("char(36)") - .HasColumnOrder(0) - .HasComment("PrimaryKey") - .HasAnnotation("Relational:JsonPropertyName", "id"); - - b.Property("ABStatus") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("AStatus") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("BStatus") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("CStatus") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("CreatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(100) - .HasComment("สร้างข้อมูลเมื่อ"); - - b.Property("CreatedFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(104) - .HasComment("ชื่อ User ที่สร้างข้อมูล"); - - b.Property("CreatedUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(101) - .HasComment("User Id ที่สร้างข้อมูล"); - - b.Property("ExamId") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("ExamStatus") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("varchar(50)"); - - b.Property("FullA") - .HasColumnType("int"); - - b.Property("FullB") - .HasColumnType("int"); - - b.Property("FullC") - .HasColumnType("int"); - - b.Property("LastUpdateFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(105) - .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdateUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(103) - .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(102) - .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); - - b.Property("Major") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)"); - - b.Property("Number") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasComment("ลำดับที่สอบได้"); - - b.Property("PercentageA") - .HasColumnType("double"); - - b.Property("PercentageB") - .HasColumnType("double"); - - b.Property("PercentageC") - .HasColumnType("double"); - - b.Property("ScoreImportId") - .HasColumnType("char(36)"); - - b.Property("SumA") - .HasColumnType("double"); - - b.Property("SumAB") - .HasColumnType("double"); - - b.Property("SumB") - .HasColumnType("double"); - - b.Property("SumC") - .HasColumnType("double"); - - b.HasKey("Id"); - - b.HasIndex("ScoreImportId"); - - b.ToTable("RecruitScores"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.ScoreImport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("char(36)") - .HasColumnOrder(0) - .HasComment("PrimaryKey") - .HasAnnotation("Relational:JsonPropertyName", "id"); - - b.Property("CreatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(100) - .HasComment("สร้างข้อมูลเมื่อ"); - - b.Property("CreatedFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(104) - .HasComment("ชื่อ User ที่สร้างข้อมูล"); - - b.Property("CreatedUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(101) - .HasComment("User Id ที่สร้างข้อมูล"); - - b.Property("ImportFileId") - .HasColumnType("char(36)"); - - b.Property("LastUpdateFullName") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("varchar(200)") - .HasColumnOrder(105) - .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdateUserId") - .IsRequired() - .HasMaxLength(40) - .HasColumnType("varchar(40)") - .HasColumnOrder(103) - .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); - - b.Property("LastUpdatedAt") - .HasColumnType("datetime(6)") - .HasColumnOrder(102) - .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); - - b.Property("RecruitImportId") - .HasColumnType("char(36)"); - - b.Property("Year") - .HasColumnType("int"); - - b.HasKey("Id"); - - b.HasIndex("ImportFileId"); - - b.HasIndex("RecruitImportId") - .IsUnique(); - - b.ToTable("ScoreImports"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", b => - { - b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", "RecruitImport") - .WithMany("Recruits") - .HasForeignKey("RecruitImportId") - .OnDelete(DeleteBehavior.Cascade); - - b.Navigation("RecruitImport"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitAddress", b => - { - b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") - .WithMany("Addresses") - .HasForeignKey("RecruitId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("Recruit"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitCertificate", b => - { - b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") - .WithMany("Certificates") - .HasForeignKey("RecruitId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("Recruit"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitDocument", b => - { - b.HasOne("BMA.EHR.Recruit.Service.Models.Documents.Document", "DocumentFile") - .WithMany() - .HasForeignKey("DocumentFileId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") - .WithMany("Documents") - .HasForeignKey("RecruitId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("DocumentFile"); - - b.Navigation("Recruit"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitEducation", b => - { - b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") - .WithMany("Educations") - .HasForeignKey("RecruitId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("Recruit"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", b => - { - b.HasOne("BMA.EHR.Recruit.Service.Models.Documents.Document", "ImportFile") - .WithMany() - .HasForeignKey("ImportFileId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("ImportFile"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportDocument", b => - { - b.HasOne("BMA.EHR.Recruit.Service.Models.Documents.Document", "Document") - .WithMany() - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", "RecruitImport") - .WithMany("RecruitDocuments") - .HasForeignKey("RecruitImportId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("Document"); - - b.Navigation("RecruitImport"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportHistory", b => - { - b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", "RecruitImport") - .WithMany("ImportHostories") - .HasForeignKey("RecruitImportId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("RecruitImport"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportImage", b => - { - b.HasOne("BMA.EHR.Recruit.Service.Models.Documents.Document", "Document") - .WithMany() - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", "RecruitImport") - .WithMany("RecruitImages") - .HasForeignKey("RecruitImportId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("Document"); - - b.Navigation("RecruitImport"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitOccupation", b => - { - b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") - .WithMany("Occupations") - .HasForeignKey("RecruitId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("Recruit"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitPayment", b => - { - b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") - .WithMany("Payments") - .HasForeignKey("RecruitId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("Recruit"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitScore", b => - { - b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.ScoreImport", "ScoreImport") - .WithMany("Scores") - .HasForeignKey("ScoreImportId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("ScoreImport"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.ScoreImport", b => - { - b.HasOne("BMA.EHR.Recruit.Service.Models.Documents.Document", "ImportFile") - .WithMany() - .HasForeignKey("ImportFileId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", "RecruitImport") - .WithOne("ScoreImport") - .HasForeignKey("BMA.EHR.Recruit.Service.Models.Recruits.ScoreImport", "RecruitImportId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("ImportFile"); - - b.Navigation("RecruitImport"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", b => - { - b.Navigation("Addresses"); - - b.Navigation("Certificates"); - - b.Navigation("Documents"); - - b.Navigation("Educations"); - - b.Navigation("Occupations"); - - b.Navigation("Payments"); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", b => - { - b.Navigation("ImportHostories"); - - b.Navigation("RecruitDocuments"); - - b.Navigation("RecruitImages"); - - b.Navigation("Recruits"); - - b.Navigation("ScoreImport") - .IsRequired(); - }); - - modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.ScoreImport", b => - { - b.Navigation("Scores"); - }); -#pragma warning restore 612, 618 - } - } -} +// +using System; +using BMA.EHR.Recruit.Service.Data; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace BMA.EHR.Recruit.Service.Migrations +{ + [DbContext(typeof(ApplicationDbContext))] + partial class ApplicationDbContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "7.0.3") + .HasAnnotation("Relational:MaxIdentifierLength", 64); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Documents.Document", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)"); + + b.Property("CreatedDate") + .HasColumnType("datetime(6)"); + + b.Property("Detail") + .IsRequired() + .HasColumnType("text"); + + b.Property("FileName") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("varchar(255)"); + + b.Property("FileSize") + .HasColumnType("int"); + + b.Property("FileType") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("varchar(128)"); + + b.Property("ObjectRefId") + .HasColumnType("char(36)"); + + b.HasKey("Id"); + + b.ToTable("Documents"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("ApplyDate") + .HasColumnType("datetime(6)"); + + b.Property("AuthName") + .HasColumnType("longtext"); + + b.Property("AuthPosition") + .HasColumnType("longtext"); + + b.Property("CitizenCardExpireDate") + .HasColumnType("datetime(6)"); + + b.Property("CitizenCardIssuer") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("CitizenId") + .IsRequired() + .HasMaxLength(13) + .HasColumnType("varchar(13)") + .HasComment("เลขประจำตัวประชาชน"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedDate") + .HasColumnType("datetime(6)"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("DateOfBirth") + .HasColumnType("datetime(6)"); + + b.Property("ExamId") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("FirstName") + .IsRequired() + .HasMaxLength(150) + .HasColumnType("varchar(150)"); + + b.Property("Gendor") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("varchar(20)"); + + b.Property("Isspecial") + .IsRequired() + .HasMaxLength(1) + .HasColumnType("varchar(1)"); + + b.Property("LastName") + .IsRequired() + .HasMaxLength(150) + .HasColumnType("varchar(150)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("Marry") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("varchar(20)"); + + b.Property("ModifiedDate") + .HasColumnType("datetime(6)"); + + b.Property("National") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("PositionLevel") + .HasColumnType("longtext"); + + b.Property("PositionName") + .HasColumnType("longtext"); + + b.Property("PositionType") + .HasColumnType("longtext"); + + b.Property("Prefix") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("Qualified") + .IsRequired() + .HasMaxLength(1) + .HasColumnType("varchar(1)"); + + b.Property("Race") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("RecruitImportId") + .HasColumnType("char(36)"); + + b.Property("RefNo") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("varchar(20)"); + + b.Property("Religion") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Remark") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.HasKey("Id"); + + b.HasIndex("RecruitImportId"); + + b.ToTable("Recruits"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitAddress", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("Address") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Address1") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Amphur") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Amphur1") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("District") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("District1") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("Mobile") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Moo") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Moo1") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Province") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Province1") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("RecruitId") + .HasColumnType("char(36)"); + + b.Property("Road") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Road1") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Soi") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Soi1") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Telephone") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("ZipCode") + .IsRequired() + .HasMaxLength(5) + .HasColumnType("varchar(5)"); + + b.Property("ZipCode1") + .IsRequired() + .HasMaxLength(5) + .HasColumnType("varchar(5)"); + + b.HasKey("Id"); + + b.HasIndex("RecruitId"); + + b.ToTable("RecruitAddresses"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitCertificate", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("CertificateNo") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("Description") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("ExpiredDate") + .HasColumnType("datetime(6)"); + + b.Property("IssueDate") + .HasColumnType("datetime(6)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("RecruitId") + .HasColumnType("char(36)"); + + b.HasKey("Id"); + + b.HasIndex("RecruitId"); + + b.ToTable("RecruitCertificates"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitDocument", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedDate") + .HasColumnType("datetime(6)"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("DocumentFileId") + .HasColumnType("char(36)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("RecruitId") + .HasColumnType("char(36)"); + + b.HasKey("Id"); + + b.HasIndex("DocumentFileId"); + + b.HasIndex("RecruitId"); + + b.ToTable("RecruitDocuments"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitEducation", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("BachelorDate") + .HasColumnType("datetime(6)"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("Degree") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("GPA") + .HasColumnType("double"); + + b.Property("HighDegree") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("Major") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("MajorGroupId") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("varchar(20)"); + + b.Property("MajorGroupName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("RecruitId") + .HasColumnType("char(36)"); + + b.Property("Specialist") + .IsRequired() + .HasMaxLength(1000) + .HasColumnType("varchar(1000)"); + + b.Property("University") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.HasKey("Id"); + + b.HasIndex("RecruitId"); + + b.ToTable("RecruitEducations"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("AnnouncementDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(14) + .HasComment("วันที่ประกาศผลสอบ"); + + b.Property("AnnouncementEndDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(7) + .HasComment("วันสิ้นสุดประกาศ"); + + b.Property("AnnouncementStartDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(6) + .HasComment("วันเริ่มประกาศ"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("Detail") + .HasColumnType("longtext") + .HasColumnOrder(4) + .HasComment("รายละเอียด"); + + b.Property("ExamDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(12) + .HasComment("วันที่สอบ"); + + b.Property("Fee") + .HasColumnType("int") + .HasColumnOrder(5) + .HasComment("ค่าธรรมเนียม"); + + b.Property("ImportFileId") + .HasColumnType("char(36)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(250) + .HasColumnType("varchar(250)") + .HasColumnOrder(2) + .HasComment("รอบการสอบ"); + + b.Property("Note") + .HasColumnType("text") + .HasColumnOrder(13) + .HasComment("หมายเหตุ"); + + b.Property("Order") + .HasColumnType("int") + .HasColumnOrder(3) + .HasComment("ครั้งที่"); + + b.Property("PaymentEndDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(9) + .HasComment("วันสิ้นสุดชำระเงิน"); + + b.Property("PaymentStartDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(8) + .HasComment("วันเริ่มชำระเงิน"); + + b.Property("RegisterEndDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(11) + .HasComment("วันสิ้นสุดสมัครสอบ"); + + b.Property("RegisterStartDate") + .HasColumnType("datetime(6)") + .HasColumnOrder(10) + .HasComment("วันเริ่มสมัครสอบ"); + + b.Property("Year") + .HasColumnType("int") + .HasColumnOrder(1) + .HasComment("ปีงบประมาณที่จัดสอบ"); + + b.HasKey("Id"); + + b.HasIndex("ImportFileId"); + + b.ToTable("RecruitImports"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportDocument", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("DocumentId") + .HasColumnType("char(36)") + .HasComment("Id เอกสาร"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("RecruitImportId") + .HasColumnType("char(36)") + .HasComment("Id รอบสมัครสอบ"); + + b.HasKey("Id"); + + b.HasIndex("DocumentId"); + + b.HasIndex("RecruitImportId"); + + b.ToTable("RecruitImportDocuments"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportHistory", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("Description") + .IsRequired() + .HasColumnType("longtext") + .HasColumnOrder(1) + .HasComment("รายละเอียดการนำเข้า"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("RecruitImportId") + .HasColumnType("char(36)"); + + b.HasKey("Id"); + + b.HasIndex("RecruitImportId"); + + b.ToTable("RecruitImportHistories"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportImage", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("DocumentId") + .HasColumnType("char(36)") + .HasComment("Id ไฟล์รูป"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("RecruitImportId") + .HasColumnType("char(36)") + .HasComment("Id รอบสมัครสอบ"); + + b.HasKey("Id"); + + b.HasIndex("DocumentId"); + + b.HasIndex("RecruitImportId"); + + b.ToTable("RecruitImportImages"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitOccupation", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("Occupation") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Position") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("RecruitId") + .HasColumnType("char(36)"); + + b.Property("Telephone") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("WorkAge") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Workplace") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.HasKey("Id"); + + b.HasIndex("RecruitId"); + + b.ToTable("RecruitOccupations"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitPayment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("AccountNumber") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("Amount") + .HasColumnType("decimal(65,30)"); + + b.Property("BankCode") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("ChequeNo") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("ChqueBankCode") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("CompanyCode") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("CreditDebit") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("CustomerName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("PaymentId") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("PaymentType") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("RecruitId") + .HasColumnType("char(36)"); + + b.Property("RefNo1") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("TellerId") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("TermBranch") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("TextFile") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("TransDate") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("TransTime") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.HasKey("Id"); + + b.HasIndex("RecruitId"); + + b.ToTable("RecruitPayments"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitScore", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("ABStatus") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("AStatus") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("BStatus") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("CStatus") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("ExamId") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("ExamStatus") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("varchar(50)"); + + b.Property("FullA") + .HasColumnType("int"); + + b.Property("FullB") + .HasColumnType("int"); + + b.Property("FullC") + .HasColumnType("int"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("Major") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)"); + + b.Property("Number") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasComment("ลำดับที่สอบได้"); + + b.Property("PercentageA") + .HasColumnType("double"); + + b.Property("PercentageB") + .HasColumnType("double"); + + b.Property("PercentageC") + .HasColumnType("double"); + + b.Property("ScoreImportId") + .HasColumnType("char(36)"); + + b.Property("SumA") + .HasColumnType("double"); + + b.Property("SumAB") + .HasColumnType("double"); + + b.Property("SumB") + .HasColumnType("double"); + + b.Property("SumC") + .HasColumnType("double"); + + b.HasKey("Id"); + + b.HasIndex("ScoreImportId"); + + b.ToTable("RecruitScores"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.ScoreImport", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)") + .HasColumnOrder(0) + .HasComment("PrimaryKey") + .HasAnnotation("Relational:JsonPropertyName", "id"); + + b.Property("CreatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(100) + .HasComment("สร้างข้อมูลเมื่อ"); + + b.Property("CreatedFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(104) + .HasComment("ชื่อ User ที่สร้างข้อมูล"); + + b.Property("CreatedUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(101) + .HasComment("User Id ที่สร้างข้อมูล"); + + b.Property("ImportFileId") + .HasColumnType("char(36)"); + + b.Property("LastUpdateFullName") + .IsRequired() + .HasMaxLength(200) + .HasColumnType("varchar(200)") + .HasColumnOrder(105) + .HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdateUserId") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("varchar(40)") + .HasColumnOrder(103) + .HasComment("User Id ที่แก้ไขข้อมูลล่าสุด"); + + b.Property("LastUpdatedAt") + .HasColumnType("datetime(6)") + .HasColumnOrder(102) + .HasComment("แก้ไขข้อมูลล่าสุดเมื่อ"); + + b.Property("RecruitImportId") + .HasColumnType("char(36)"); + + b.Property("Year") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.HasIndex("ImportFileId"); + + b.HasIndex("RecruitImportId") + .IsUnique(); + + b.ToTable("ScoreImports"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", "RecruitImport") + .WithMany("Recruits") + .HasForeignKey("RecruitImportId") + .OnDelete(DeleteBehavior.Cascade); + + b.Navigation("RecruitImport"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitAddress", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") + .WithMany("Addresses") + .HasForeignKey("RecruitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Recruit"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitCertificate", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") + .WithMany("Certificates") + .HasForeignKey("RecruitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Recruit"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitDocument", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Documents.Document", "DocumentFile") + .WithMany() + .HasForeignKey("DocumentFileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") + .WithMany("Documents") + .HasForeignKey("RecruitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DocumentFile"); + + b.Navigation("Recruit"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitEducation", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") + .WithMany("Educations") + .HasForeignKey("RecruitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Recruit"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Documents.Document", "ImportFile") + .WithMany() + .HasForeignKey("ImportFileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("ImportFile"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportDocument", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Documents.Document", "Document") + .WithMany() + .HasForeignKey("DocumentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", "RecruitImport") + .WithMany("RecruitDocuments") + .HasForeignKey("RecruitImportId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Document"); + + b.Navigation("RecruitImport"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportHistory", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", "RecruitImport") + .WithMany("ImportHostories") + .HasForeignKey("RecruitImportId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("RecruitImport"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImportImage", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Documents.Document", "Document") + .WithMany() + .HasForeignKey("DocumentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", "RecruitImport") + .WithMany("RecruitImages") + .HasForeignKey("RecruitImportId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Document"); + + b.Navigation("RecruitImport"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitOccupation", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") + .WithMany("Occupations") + .HasForeignKey("RecruitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Recruit"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitPayment", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", "Recruit") + .WithMany("Payments") + .HasForeignKey("RecruitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Recruit"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitScore", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.ScoreImport", "ScoreImport") + .WithMany("Scores") + .HasForeignKey("ScoreImportId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("ScoreImport"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.ScoreImport", b => + { + b.HasOne("BMA.EHR.Recruit.Service.Models.Documents.Document", "ImportFile") + .WithMany() + .HasForeignKey("ImportFileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", "RecruitImport") + .WithOne("ScoreImport") + .HasForeignKey("BMA.EHR.Recruit.Service.Models.Recruits.ScoreImport", "RecruitImportId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("ImportFile"); + + b.Navigation("RecruitImport"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.Recruit", b => + { + b.Navigation("Addresses"); + + b.Navigation("Certificates"); + + b.Navigation("Documents"); + + b.Navigation("Educations"); + + b.Navigation("Occupations"); + + b.Navigation("Payments"); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.RecruitImport", b => + { + b.Navigation("ImportHostories"); + + b.Navigation("RecruitDocuments"); + + b.Navigation("RecruitImages"); + + b.Navigation("Recruits"); + + b.Navigation("ScoreImport") + .IsRequired(); + }); + + modelBuilder.Entity("BMA.EHR.Recruit.Service.Models.Recruits.ScoreImport", b => + { + b.Navigation("Scores"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Models/Recruits/Recruit.cs b/Models/Recruits/Recruit.cs index da1b927..aa96d1c 100644 --- a/Models/Recruits/Recruit.cs +++ b/Models/Recruits/Recruit.cs @@ -79,5 +79,7 @@ namespace BMA.EHR.Recruit.Service.Models.Recruits public string? PositionName { get; set; } public string? PositionType { get; set; } public string? PositionLevel { get; set; } + public string? AuthName { get; set; } + public string? AuthPosition { get; set; } } } diff --git a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml index 131624f..01a8e20 100644 --- a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml +++ b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml @@ -1,3 +1,4 @@ +<<<<<<< HEAD @@ -542,3 +543,561 @@ +======= + + + + BMA.EHR.Recruit.Service + + + + + ตัวอย่างในการเขียน api เพื่อทำการ upload file + + + เมื่อทำการ upload สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ตัวอย่างในการเขียน api เพื่อทำการ delete file + + รหัสไฟล์ในฐานข้อมูล + + เมื่อทำการ delete file สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ตัวอย่างในการเขียน api เพื่อทำการ download file + + รหัสไฟล์ในฐานข้อมูล + + เมื่อทำการ download file สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลรอบการสอบแข่งขัน + + + เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลรอบการสอบแข่งขันเป็นรายการ + + รหัสรอบการสอบแข่งขัน + + เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + เพิ่มข้อมูลรอบการจัดสอบแข่งขัน + + Request parameters + + เมื่อทำการเพิ่มข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แก้ไขข้อมูลรอบการจัดสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + Request parameters + + เมื่อทำการเพิ่มข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ลบข้อมูลรอบการจัดสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำการลบข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลสำหรับหน้าจอ รายการนำเข้าข้อมูลผู้สมัครสอบแข่งขัน + + + เมื่อแสดงรายการข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + นำเข้ารายชื่อผู้สมัครสอบแข่งขัน + + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ลบข้อมูลนำข้อมูลผู้สมัครสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงประวัติการนำเข้าข้อมูลการสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + นำเข้ารายชื่อผู้สมัครสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลสำหรับหน้าจอ : รายการข้อมูลผู้สมัครสอบ + + + + + Upload Image หรือ เอกสารในรอบการสอบ + + ประเภทเอกสาร + รหัสรอบสมัคร + + เมื่อทำการอ่านข้อมูลรอบการสมัครสอบ และ คนสมัครสอบในรอบสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ลบ Image หรือ เอกสารในรอบการสอบ + + ประเภทเอกสาร + รหัสไฟล์ + + เมื่อทำรายการสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + โอนคนแข่งขันไปบรรจุ + + รหัสรอบสมัคร + + เมื่อโอนคนแข่งขันไปบรรจุสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + รายงานจำนวนผู้เข้าสอบแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญ + + ปีงบประมาณ + + เมื่อทำการอ่านข้อมูลจำนวนผู้เข้าสอบแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + รายงานจำนวนผู้สอบผ่านแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญ + + ปีงบประมาณ + + เมื่อทำการอ่านข้อมูลจำนวนผู้สอบผ่านแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + Determines whether this instance is email. + + The input. + + + + + Determines whether this instance is numeric. + + The input. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ตัวแปรสำหรับสร้างข้อมูลการสอบแข่งขัน + + + + + ปีงบประมาณที่จัดสอบ + + + + + รอบการสอบ + + + + + ครั้งที่ + + + + + รายละเอียด + + + + + ค่าธรรมเนียม + + + + + วันเริ่มประกาศ + + + + + วันสิ้นสุดประกาศ + + + + + วันเริ่มชำระเงิน + + + + + วันสิ้นสุดชำระเงิน + + + + + วันเริ่มสมัครสอบ + + + + + วันสิ้นสุดสมัครสอบ + + + + + วันที่สอบ + + + + + หมายเหตุ + + + + + วันที่ประกาศผลสอบ + + + + + ข้อมูลคุณสมบัติของผู้เข้าสอบ โดยส่งมาจากหน้าจอ 'มีคุณสมบัติ' 'ขาดคุณสมบัติ' + + + + + ข้อมูลผลการสอบ 'ผ่าน' 'ไม่ผ่าน' + + + + +>>>>>>> develop diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs new file mode 100644 index 0000000..5f0ae28 --- /dev/null +++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("d45c95ce-6b9d-4aa7-aaaf-62fe8b792934")] +[assembly: System.Reflection.AssemblyCompanyAttribute("BMA.EHR.Recruit.Service")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9cf6a38b3eec88ec83f6dd50a0177fbc46402c49")] +[assembly: System.Reflection.AssemblyProductAttribute("BMA.EHR.Recruit.Service")] +[assembly: System.Reflection.AssemblyTitleAttribute("BMA.EHR.Recruit.Service")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache new file mode 100644 index 0000000..2b713e5 --- /dev/null +++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +d7b6fe7d0e4b6b4929eed5632bd0821a80505aa63394f077f16e59d2316ff469 diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache index 23f14a5..b6c28a0 100644 --- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache +++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache @@ -1 +1,5 @@ +<<<<<<< HEAD 2afae04b6f3a7d44fcb90638ba50ba827580abc648c813a2624743f2ef385810 +======= +118adb39fa17e550a6ea3f0884bcc470c472eff8c41b45c6866e270cec7ab054 +>>>>>>> develop diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.FileListAbsolute.txt b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.FileListAbsolute.txt index 02fed18..f5906cd 100644 --- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.FileListAbsolute.txt +++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.FileListAbsolute.txt @@ -1,3 +1,4 @@ +<<<<<<< HEAD D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/nuget.config D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.Development.json D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.json @@ -1447,3 +1448,1454 @@ D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service. D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.pdb D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.genruntimeconfig.cache D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\ref\BMA.EHR.Recruit.Service.dll +======= +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/nuget.config +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.Development.json +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.json +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.exe +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.runtimeconfig.json +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.Core.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.S3.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.SecurityToken.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Core.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Identity.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BouncyCastle.Crypto.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DotNetEd.CoreAdmin.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Dapper.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DnsClient.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Elasticsearch.Net.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.Interfaces.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.System.Drawing.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Google.Protobuf.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Humanizer.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.Streams.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Hash.xxHash.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/LiteDB.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.Design.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IO.RecyclableMemoryStream.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.OpenApi.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Bson.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.Core.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.GridFS.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mono.TextTemplating.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySql.Data.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Ubiety.Dns.Core.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdNet.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySqlConnector.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mvc.Grid.Core.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Npgsql.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.Design.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.AspNetCore.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.Extensions.Logging.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.AspNetCore.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Exceptions.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Logging.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Compact.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Settings.Configuration.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Console.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Debug.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.File.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/SharpCompress.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Snappier.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Annotations.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.CodeDom.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Data.SqlClient.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Drawing.Common.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Memory.Data.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Net.WebSockets.WebSocketProtocol.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Runtime.Caching.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Permissions.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Windows.Extensions.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/WatchDog.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdSharp.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/linux/native/libmongocrypt.so +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx/native/libmongocrypt.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/native/mongocrypt.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libX11.6.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXau.6.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXdmcp.6.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXext.6.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXrender.1.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libcairo.2.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfontconfig.1.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfreetype.6.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.0.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgif.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libglib-2.0.0.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libintl.8.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libjpeg.9.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpcre.1.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpixman-1.0.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpng16.16.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libtiff.5.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-render.0.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-shm.0.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb.1.dylib +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/sni.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/sni.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/sni.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/Sentry.Attributes.cs +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.build.BMA.EHR.Recruit.Service.props +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.pack.json +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.build.json +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.development.json +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/scopedcss/bundle/BMA.EHR.Recruit.Service.styles.css +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache +D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.Development.json +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.json +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/nuget.config +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/global.json +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.exe +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.runtimeconfig.json +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.Core.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.S3.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.SecurityToken.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Core.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Identity.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Core.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Extensions.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BouncyCastle.Crypto.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DotNetEd.CoreAdmin.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Dapper.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DnsClient.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Elasticsearch.Net.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.Interfaces.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.System.Drawing.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Google.Protobuf.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Humanizer.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.Streams.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Hash.xxHash.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/LiteDB.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.Design.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IO.RecyclableMemoryStream.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.OpenApi.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Bson.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.Core.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.GridFS.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mono.TextTemplating.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySql.Data.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Ubiety.Dns.Core.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdNet.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySqlConnector.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mvc.Grid.Core.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Npgsql.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.Design.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.AspNetCore.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.Extensions.Logging.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.AspNetCore.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Exceptions.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Logging.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Compact.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Settings.Configuration.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Console.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Debug.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.File.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/SharpCompress.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Snappier.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Annotations.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.CodeDom.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Data.SqlClient.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Drawing.Common.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Memory.Data.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Net.WebSockets.WebSocketProtocol.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Runtime.Caching.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Permissions.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Windows.Extensions.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/WatchDog.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdSharp.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/linux/native/libmongocrypt.so +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx/native/libmongocrypt.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/native/mongocrypt.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libX11.6.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXau.6.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXdmcp.6.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXext.6.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXrender.1.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libcairo.2.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfontconfig.1.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfreetype.6.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.0.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgif.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libglib-2.0.0.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libintl.8.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libjpeg.9.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpcre.1.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpixman-1.0.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpng16.16.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libtiff.5.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-render.0.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-shm.0.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb.1.dylib +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/sni.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/sni.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/sni.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/Sentry.Attributes.cs +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.build.BMA.EHR.Recruit.Service.props +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.pack.json +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.build.json +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.development.json +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/scopedcss/bundle/BMA.EHR.Recruit.Service.styles.css +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CopyComplete +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache +C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/nuget.config +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.Development.json +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.json +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.exe +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.runtimeconfig.json +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.Core.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.S3.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.SecurityToken.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Core.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Identity.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Core.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Extensions.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BouncyCastle.Crypto.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DotNetEd.CoreAdmin.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Dapper.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DnsClient.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Elasticsearch.Net.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.Interfaces.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.System.Drawing.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Google.Protobuf.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Humanizer.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.Streams.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Hash.xxHash.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/LiteDB.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.Design.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IO.RecyclableMemoryStream.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.OpenApi.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Bson.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.Core.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.GridFS.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mono.TextTemplating.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySql.Data.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Ubiety.Dns.Core.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdNet.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySqlConnector.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mvc.Grid.Core.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Npgsql.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.Design.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.AspNetCore.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.Extensions.Logging.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.AspNetCore.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Exceptions.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Logging.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Compact.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Settings.Configuration.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Console.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Debug.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.File.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/SharpCompress.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Snappier.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Annotations.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.CodeDom.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Data.SqlClient.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Drawing.Common.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Memory.Data.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Net.WebSockets.WebSocketProtocol.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Runtime.Caching.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Permissions.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Windows.Extensions.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/WatchDog.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdSharp.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/linux/native/libmongocrypt.so +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx/native/libmongocrypt.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/native/mongocrypt.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libX11.6.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXau.6.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXdmcp.6.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXext.6.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXrender.1.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libcairo.2.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfontconfig.1.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfreetype.6.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.0.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgif.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libglib-2.0.0.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libintl.8.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libjpeg.9.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpcre.1.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpixman-1.0.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpng16.16.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libtiff.5.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-render.0.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-shm.0.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb.1.dylib +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/sni.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/sni.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/sni.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/Sentry.Attributes.cs +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.build.BMA.EHR.Recruit.Service.props +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.pack.json +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.build.json +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.development.json +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/scopedcss/bundle/BMA.EHR.Recruit.Service.styles.css +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CopyComplete +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache +D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/Sentry.Attributes.cs +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/nuget.config +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.Development.json +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.json +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/global.json +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.runtimeconfig.json +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.Core.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.S3.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.SecurityToken.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Core.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Identity.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Core.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Extensions.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BouncyCastle.Crypto.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DotNetEd.CoreAdmin.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Dapper.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DnsClient.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Elasticsearch.Net.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.Interfaces.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.System.Drawing.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Google.Protobuf.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Humanizer.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.Streams.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Hash.xxHash.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/LiteDB.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.Design.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IO.RecyclableMemoryStream.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.OpenApi.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Bson.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.Core.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.GridFS.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mono.TextTemplating.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySql.Data.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Ubiety.Dns.Core.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdNet.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySqlConnector.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mvc.Grid.Core.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Npgsql.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.Design.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.AspNetCore.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.Extensions.Logging.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.AspNetCore.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Exceptions.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Logging.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Compact.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Settings.Configuration.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Console.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Debug.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.File.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/SharpCompress.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Snappier.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Annotations.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.CodeDom.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Data.SqlClient.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Drawing.Common.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Memory.Data.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Net.WebSockets.WebSocketProtocol.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Runtime.Caching.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Permissions.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Windows.Extensions.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/WatchDog.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdSharp.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/linux/native/libmongocrypt.so +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx/native/libmongocrypt.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/native/mongocrypt.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libX11.6.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXau.6.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXdmcp.6.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXext.6.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXrender.1.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libcairo.2.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfontconfig.1.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfreetype.6.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.0.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgif.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libglib-2.0.0.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libintl.8.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libjpeg.9.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpcre.1.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpixman-1.0.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpng16.16.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libtiff.5.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-render.0.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-shm.0.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb.1.dylib +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/sni.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/sni.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/sni.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.build.BMA.EHR.Recruit.Service.props +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.pack.json +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.build.json +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.development.json +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/scopedcss/bundle/BMA.EHR.Recruit.Service.styles.css +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CopyComplete +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache +/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\nuget.config +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\appsettings.Development.json +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\appsettings.json +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Recruit.Service.staticwebassets.runtime.json +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Recruit.Service.exe +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Recruit.Service.deps.json +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Recruit.Service.runtimeconfig.json +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Recruit.Service.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Recruit.Service.pdb +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Recruit.Service.xml +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\AWSSDK.Core.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\AWSSDK.S3.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\AWSSDK.SecurityToken.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Azure.Core.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Azure.Identity.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Core.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Extensions.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BouncyCastle.Crypto.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\DotNetEd.CoreAdmin.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Dapper.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\DnsClient.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Elasticsearch.Net.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\EPPlus.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\EPPlus.Interfaces.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\EPPlus.System.Drawing.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Google.Protobuf.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Humanizer.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\K4os.Compression.LZ4.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\K4os.Compression.LZ4.Streams.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\K4os.Hash.xxHash.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\LiteDB.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.JsonPatch.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.Razor.Language.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.CodeAnalysis.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.CodeAnalysis.Razor.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.Data.SqlClient.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Design.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.Design.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.SqlServer.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.Identity.Client.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.Identity.Client.Extensions.Msal.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.IO.RecyclableMemoryStream.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.OpenApi.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.SqlServer.Server.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\MongoDB.Bson.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\MongoDB.Driver.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\MongoDB.Driver.Core.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\MongoDB.Driver.GridFS.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\MongoDB.Libmongocrypt.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Mono.TextTemplating.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\MySql.Data.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Ubiety.Dns.Core.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\ZstdNet.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\MySqlConnector.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Newtonsoft.Json.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Newtonsoft.Json.Bson.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Mvc.Grid.Core.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Npgsql.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.Design.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Sentry.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Sentry.AspNetCore.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Sentry.Extensions.Logging.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.AspNetCore.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Enrichers.Environment.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Exceptions.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Extensions.Hosting.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Extensions.Logging.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Formatting.Compact.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Formatting.Elasticsearch.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Settings.Configuration.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Sinks.Console.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Sinks.Debug.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Sinks.Elasticsearch.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Sinks.File.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Sinks.PeriodicBatching.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\SharpCompress.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Snappier.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Swashbuckle.AspNetCore.Annotations.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.CodeDom.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Data.SqlClient.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Drawing.Common.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Memory.Data.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Net.WebSockets.WebSocketProtocol.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Runtime.Caching.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Security.Permissions.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Windows.Extensions.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\WatchDog.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\ZstdSharp.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\linux\native\libmongocrypt.so +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx\native\libmongocrypt.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\native\mongocrypt.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libX11.6.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libXau.6.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libXdmcp.6.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libXext.6.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libXrender.1.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libcairo.2.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libfontconfig.1.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libfreetype.6.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.0.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libgif.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libglib-2.0.0.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libintl.8.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libjpeg.9.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libpcre.1.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libpixman-1.0.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libpng16.16.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libtiff.5.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-render.0.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-shm.0.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb.1.dylib +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win-arm64\native\sni.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win-x64\native\sni.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win-x86\native\sni.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\Sentry.Attributes.cs +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfo.cs +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\staticwebassets\msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\staticwebassets\msbuild.build.BMA.EHR.Recruit.Service.props +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.BMA.EHR.Recruit.Service.props +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\staticwebassets.pack.json +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\staticwebassets.build.json +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\staticwebassets.development.json +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\scopedcss\bundle\BMA.EHR.Recruit.Service.styles.css +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.CopyComplete +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\refint\BMA.EHR.Recruit.Service.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.xml +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.pdb +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.genruntimeconfig.cache +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\ref\BMA.EHR.Recruit.Service.dll +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Templates\ExamList.xlsx +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Templates\PassAExamList.xlsx +D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Templates\PassExamList.xlsx +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\Sentry.Attributes.cs +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfo.cs +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.dll +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\refint\BMA.EHR.Recruit.Service.dll +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.xml +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.pdb +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\nuget.config +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\appsettings.Development.json +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\appsettings.json +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Templates\ExamList.xlsx +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Templates\PassAExamList.xlsx +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Templates\PassExamList.xlsx +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.staticwebassets.runtime.json +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.exe +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.deps.json +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.runtimeconfig.json +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.pdb +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.xml +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\AWSSDK.Core.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\AWSSDK.S3.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\AWSSDK.SecurityToken.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Azure.Core.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Azure.Identity.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BouncyCastle.Crypto.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\DotNetEd.CoreAdmin.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Dapper.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\DnsClient.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Elasticsearch.Net.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\EPPlus.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\EPPlus.Interfaces.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\EPPlus.System.Drawing.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Google.Protobuf.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Humanizer.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\K4os.Compression.LZ4.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\K4os.Compression.LZ4.Streams.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\K4os.Hash.xxHash.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\LiteDB.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.JsonPatch.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Razor.Language.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.CodeAnalysis.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.CodeAnalysis.Razor.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Data.SqlClient.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Design.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.Design.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.SqlServer.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Identity.Client.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Identity.Client.Extensions.Msal.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IO.RecyclableMemoryStream.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.OpenApi.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.SqlServer.Server.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Bson.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Driver.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Driver.Core.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Driver.GridFS.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Libmongocrypt.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Mono.TextTemplating.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MySql.Data.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Ubiety.Dns.Core.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\ZstdNet.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MySqlConnector.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Newtonsoft.Json.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Newtonsoft.Json.Bson.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Mvc.Grid.Core.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Npgsql.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.Design.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Sentry.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Sentry.AspNetCore.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Sentry.Extensions.Logging.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.AspNetCore.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Enrichers.Environment.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Exceptions.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Extensions.Hosting.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Extensions.Logging.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Formatting.Compact.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Formatting.Elasticsearch.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Settings.Configuration.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.Console.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.Debug.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.Elasticsearch.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.File.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.PeriodicBatching.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\SharpCompress.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Snappier.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.Annotations.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.CodeDom.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Data.SqlClient.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Drawing.Common.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Memory.Data.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Net.WebSockets.WebSocketProtocol.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Runtime.Caching.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Security.Permissions.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Windows.Extensions.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\WatchDog.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\ZstdSharp.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\linux\native\libmongocrypt.so +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx\native\libmongocrypt.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\native\mongocrypt.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libX11.6.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXau.6.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXdmcp.6.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXext.6.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXrender.1.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libcairo.2.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libfontconfig.1.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libfreetype.6.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.0.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libgif.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libglib-2.0.0.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libintl.8.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libjpeg.9.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libpcre.1.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libpixman-1.0.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libpng16.16.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libtiff.5.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-render.0.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-shm.0.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb.1.dylib +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-arm64\native\sni.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x64\native\sni.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x86\native\sni.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.build.BMA.EHR.Recruit.Service.props +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.BMA.EHR.Recruit.Service.props +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets.pack.json +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets.build.json +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets.development.json +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\scopedcss\bundle\BMA.EHR.Recruit.Service.styles.css +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.genruntimeconfig.cache +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\ref\BMA.EHR.Recruit.Service.dll +<<<<<<< HEAD +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\nuget.config +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\appsettings.Development.json +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\appsettings.json +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Templates\ExamList.xlsx +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Templates\PassAExamList.xlsx +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Templates\PassExamList.xlsx +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.staticwebassets.runtime.json +======= +>>>>>>> working +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.exe +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.deps.json +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.runtimeconfig.json +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.pdb +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.xml +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\AWSSDK.Core.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\AWSSDK.S3.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\AWSSDK.SecurityToken.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Azure.Core.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Azure.Identity.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BouncyCastle.Crypto.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\DotNetEd.CoreAdmin.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Dapper.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\DnsClient.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Elasticsearch.Net.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\EPPlus.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\EPPlus.Interfaces.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\EPPlus.System.Drawing.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Google.Protobuf.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Humanizer.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\K4os.Compression.LZ4.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\K4os.Compression.LZ4.Streams.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\K4os.Hash.xxHash.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\LiteDB.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.JsonPatch.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Razor.Language.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.CodeAnalysis.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.CodeAnalysis.Razor.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Data.SqlClient.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Design.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.Design.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.SqlServer.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Identity.Client.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Identity.Client.Extensions.Msal.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IO.RecyclableMemoryStream.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.OpenApi.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.SqlServer.Server.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Bson.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Driver.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Driver.Core.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Driver.GridFS.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Libmongocrypt.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Mono.TextTemplating.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MySql.Data.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Ubiety.Dns.Core.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\ZstdNet.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MySqlConnector.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Newtonsoft.Json.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Newtonsoft.Json.Bson.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Mvc.Grid.Core.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Npgsql.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.Design.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Sentry.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Sentry.AspNetCore.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Sentry.Extensions.Logging.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.AspNetCore.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Enrichers.Environment.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Exceptions.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Extensions.Hosting.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Extensions.Logging.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Formatting.Compact.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Formatting.Elasticsearch.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Settings.Configuration.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.Console.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.Debug.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.Elasticsearch.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.File.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.PeriodicBatching.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\SharpCompress.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Snappier.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.Annotations.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.CodeDom.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Data.SqlClient.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Drawing.Common.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Memory.Data.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Net.WebSockets.WebSocketProtocol.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Runtime.Caching.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Security.Permissions.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Windows.Extensions.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\WatchDog.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\ZstdSharp.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\linux\native\libmongocrypt.so +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx\native\libmongocrypt.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\native\mongocrypt.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libX11.6.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXau.6.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXdmcp.6.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXext.6.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXrender.1.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libcairo.2.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libfontconfig.1.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libfreetype.6.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.0.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libgif.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libglib-2.0.0.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libintl.8.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libjpeg.9.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libpcre.1.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libpixman-1.0.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libpng16.16.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libtiff.5.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-render.0.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-shm.0.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb.1.dylib +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-arm64\native\sni.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x64\native\sni.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x86\native\sni.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\Sentry.Attributes.cs +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfo.cs +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.sourcelink.json +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets.build.json +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets.development.json +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.build.BMA.EHR.Recruit.Service.props +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.BMA.EHR.Recruit.Service.props +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets.pack.json +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\scopedcss\bundle\BMA.EHR.Recruit.Service.styles.css +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR..8088DF8F.Up2Date +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\refint\BMA.EHR.Recruit.Service.dll +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.xml +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.pdb +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.genruntimeconfig.cache +D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\ref\BMA.EHR.Recruit.Service.dll +D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.staticwebassets.endpoints.json +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.sourcelink.json +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets.build.endpoints.json +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR..8088DF8F.Up2Date +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\appsettings.Development.json +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\appsettings.json +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\nuget.config +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.staticwebassets.runtime.json +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.staticwebassets.endpoints.json +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Templates\ExamList.xlsx +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Templates\PassAExamList.xlsx +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Templates\PassExamList.xlsx +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.exe +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.deps.json +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.runtimeconfig.json +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.pdb +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.xml +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\AWSSDK.Core.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\AWSSDK.S3.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\AWSSDK.SecurityToken.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Azure.Core.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Azure.Identity.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BouncyCastle.Crypto.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\DotNetEd.CoreAdmin.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Dapper.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\DnsClient.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Elasticsearch.Net.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\EPPlus.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\EPPlus.Interfaces.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\EPPlus.System.Drawing.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Google.Protobuf.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Humanizer.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\K4os.Compression.LZ4.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\K4os.Compression.LZ4.Streams.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\K4os.Hash.xxHash.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\LiteDB.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.JsonPatch.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Razor.Language.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.CodeAnalysis.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.CodeAnalysis.Razor.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Data.SqlClient.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Design.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.Design.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.SqlServer.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Identity.Client.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Identity.Client.Extensions.Msal.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IO.RecyclableMemoryStream.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.OpenApi.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.SqlServer.Server.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MongoDB.Bson.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MongoDB.Driver.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MongoDB.Driver.Core.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MongoDB.Driver.GridFS.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MongoDB.Libmongocrypt.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Mono.TextTemplating.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MySql.Data.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Ubiety.Dns.Core.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\ZstdNet.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MySqlConnector.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Newtonsoft.Json.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Newtonsoft.Json.Bson.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Mvc.Grid.Core.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Npgsql.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.Design.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Sentry.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Sentry.AspNetCore.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Sentry.Extensions.Logging.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.AspNetCore.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Enrichers.Environment.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Exceptions.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Extensions.Hosting.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Extensions.Logging.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Formatting.Compact.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Formatting.Elasticsearch.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Settings.Configuration.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Sinks.Console.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Sinks.Debug.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Sinks.Elasticsearch.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Sinks.File.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Sinks.PeriodicBatching.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\SharpCompress.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Snappier.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Swashbuckle.AspNetCore.Annotations.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.CodeDom.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Data.SqlClient.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Drawing.Common.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Memory.Data.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Net.WebSockets.WebSocketProtocol.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Runtime.Caching.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Security.Permissions.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Windows.Extensions.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\WatchDog.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\ZstdSharp.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\linux\native\libmongocrypt.so +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx\native\libmongocrypt.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\native\mongocrypt.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libX11.6.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libXau.6.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libXdmcp.6.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libXext.6.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libXrender.1.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libcairo.2.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libfontconfig.1.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libfreetype.6.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.0.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libgif.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libglib-2.0.0.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libintl.8.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libjpeg.9.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libpcre.1.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libpixman-1.0.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libpng16.16.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libtiff.5.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-render.0.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-shm.0.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb.1.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-arm64\native\sni.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-x64\native\sni.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-x86\native\sni.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\Sentry.Attributes.cs +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfo.cs +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.sourcelink.json +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\scopedcss\bundle\BMA.EHR.Recruit.Service.styles.css +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets.build.json +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets.development.json +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets.build.endpoints.json +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets\msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets\msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets\msbuild.build.BMA.EHR.Recruit.Service.props +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.BMA.EHR.Recruit.Service.props +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets.pack.json +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR..8088DF8F.Up2Date +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.dll +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\refint\BMA.EHR.Recruit.Service.dll +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.xml +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.pdb +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.genruntimeconfig.cache +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\ref\BMA.EHR.Recruit.Service.dll +>>>>>>> develop diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml index 131624f..01a8e20 100644 --- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml +++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml @@ -1,3 +1,4 @@ +<<<<<<< HEAD @@ -542,3 +543,561 @@ +======= + + + + BMA.EHR.Recruit.Service + + + + + ตัวอย่างในการเขียน api เพื่อทำการ upload file + + + เมื่อทำการ upload สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ตัวอย่างในการเขียน api เพื่อทำการ delete file + + รหัสไฟล์ในฐานข้อมูล + + เมื่อทำการ delete file สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ตัวอย่างในการเขียน api เพื่อทำการ download file + + รหัสไฟล์ในฐานข้อมูล + + เมื่อทำการ download file สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลรอบการสอบแข่งขัน + + + เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลรอบการสอบแข่งขันเป็นรายการ + + รหัสรอบการสอบแข่งขัน + + เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + เพิ่มข้อมูลรอบการจัดสอบแข่งขัน + + Request parameters + + เมื่อทำการเพิ่มข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แก้ไขข้อมูลรอบการจัดสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + Request parameters + + เมื่อทำการเพิ่มข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ลบข้อมูลรอบการจัดสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำการลบข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลสำหรับหน้าจอ รายการนำเข้าข้อมูลผู้สมัครสอบแข่งขัน + + + เมื่อแสดงรายการข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + นำเข้ารายชื่อผู้สมัครสอบแข่งขัน + + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ลบข้อมูลนำข้อมูลผู้สมัครสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงประวัติการนำเข้าข้อมูลการสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + นำเข้ารายชื่อผู้สมัครสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลสำหรับหน้าจอ : รายการข้อมูลผู้สมัครสอบ + + + + + Upload Image หรือ เอกสารในรอบการสอบ + + ประเภทเอกสาร + รหัสรอบสมัคร + + เมื่อทำการอ่านข้อมูลรอบการสมัครสอบ และ คนสมัครสอบในรอบสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ลบ Image หรือ เอกสารในรอบการสอบ + + ประเภทเอกสาร + รหัสไฟล์ + + เมื่อทำรายการสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + โอนคนแข่งขันไปบรรจุ + + รหัสรอบสมัคร + + เมื่อโอนคนแข่งขันไปบรรจุสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + รายงานจำนวนผู้เข้าสอบแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญ + + ปีงบประมาณ + + เมื่อทำการอ่านข้อมูลจำนวนผู้เข้าสอบแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + รายงานจำนวนผู้สอบผ่านแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญ + + ปีงบประมาณ + + เมื่อทำการอ่านข้อมูลจำนวนผู้สอบผ่านแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + Determines whether this instance is email. + + The input. + + + + + Determines whether this instance is numeric. + + The input. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ตัวแปรสำหรับสร้างข้อมูลการสอบแข่งขัน + + + + + ปีงบประมาณที่จัดสอบ + + + + + รอบการสอบ + + + + + ครั้งที่ + + + + + รายละเอียด + + + + + ค่าธรรมเนียม + + + + + วันเริ่มประกาศ + + + + + วันสิ้นสุดประกาศ + + + + + วันเริ่มชำระเงิน + + + + + วันสิ้นสุดชำระเงิน + + + + + วันเริ่มสมัครสอบ + + + + + วันสิ้นสุดสมัครสอบ + + + + + วันที่สอบ + + + + + หมายเหตุ + + + + + วันที่ประกาศผลสอบ + + + + + ข้อมูลคุณสมบัติของผู้เข้าสอบ โดยส่งมาจากหน้าจอ 'มีคุณสมบัติ' 'ขาดคุณสมบัติ' + + + + + ข้อมูลผลการสอบ 'ผ่าน' 'ไม่ผ่าน' + + + + +>>>>>>> develop