Compare commits

..

No commits in common. "d95dfdfca8f7aff55c2e69a0b93fb3ac4a9a3e09" and "b637734690734b291aed34f58ea93cbd33f74fad" have entirely different histories.

View file

@ -699,7 +699,7 @@ namespace BMA.EHR.Report.Service.Controllers
}).ToListAsync();
if (data.Count == 0)
return NotFound("ไม่พบข้อมูลในระบบ");
throw new Exception("ไม่พบข้อมูลในระบบ");
var examName = data.First().ExamName;
@ -839,7 +839,7 @@ namespace BMA.EHR.Report.Service.Controllers
.ToListAsync();
if (data.Count == 0)
return NotFound("ไม่พบข้อมูลในระบบ");
throw new Exception("ไม่พบข้อมูลในระบบ");
var examName = data.First().ExamName;
@ -948,7 +948,7 @@ namespace BMA.EHR.Report.Service.Controllers
.FirstOrDefaultAsync(x => x.Id == id);
if (periodExam == null)
return NotFound("ไม่พบข้อมูลการรับสมัครสอบ");
throw new Exception("ไม่พบข้อมูลการรับสมัครสอบ");
var data = await _context.Candidates.AsQueryable()
.Include(x => x.PeriodExam)
@ -967,7 +967,7 @@ namespace BMA.EHR.Report.Service.Controllers
}).ToListAsync();
if (data.Count == 0)
return NotFound("ไม่พบข้อมูลในระบบ");
throw new Exception("ไม่พบข้อมูลในระบบ");
var examName = data.First().ExamName;
@ -1087,7 +1087,7 @@ namespace BMA.EHR.Report.Service.Controllers
.FirstOrDefaultAsync(x => x.Id == id);
if (periodExam == null)
return NotFound("ไม่พบข้อมูลการรับสมัครสอบ");
throw new Exception("ไม่พบข้อมูลการรับสมัครสอบ");
var candidates = await _context.Candidates.AsQueryable()
.Include(x => x.PeriodExam)
@ -1111,8 +1111,8 @@ namespace BMA.EHR.Report.Service.Controllers
.Where(x => x.ExamResult?.Trim() == "ได้")
.ToList();
if (data.Count == 0)
return NotFound("ไม่พบข้อมูลในระบบ");
if (data.Count == 0)
throw new Exception("ไม่พบข้อมูลในระบบ");
var examName = data.First().ExamName;