แก้ปัญหา GlobalExceptionMiddleware Resturn Response 200 เมื่อมมี Exception 500

This commit is contained in:
Suphonchai Phoonsawat 2023-07-28 10:38:30 +07:00
parent 70cc95e408
commit 9a2e487d8d
4 changed files with 38 additions and 5 deletions

View file

@ -280,6 +280,32 @@ namespace BMA.EHR.Command.Service.Controllers
}
}
/// <summary>
/// PM7-26 : ข้อมูลเลือกรายชื่อออกคำสั่ง
/// </summary>
/// <param name="orderId">Record Id ของคำสั่ง</param>
/// <returns></returns>
/// <response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
[HttpGet("persons/{orderId}")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status500InternalServerError)]
[AllowAnonymous]
public async Task<ActionResult<ResponseObject>> GetCommandReceiver(Guid orderId)
{
try
{
throw new NotImplementedException();
}
catch
{
throw;
}
}
#endregion
}
}