no message

This commit is contained in:
Kittapath 2024-06-24 20:53:47 +07:00
parent e47eca3235
commit 877e7f19c9
4 changed files with 693 additions and 573 deletions

View file

@ -16,6 +16,7 @@ using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using Swashbuckle.AspNetCore.Annotations;
using System.Net;
using System.Net.Http.Headers;
using System.Security.Claims;
@ -5500,6 +5501,44 @@ namespace BMA.EHR.Command.Service.Controllers
}
}
/// <summary>
/// แสดงประวัติการออกคำสั่ง
/// </summary>
/// <param name="type">ประเภทระบบคำสั่ง</param>
/// <param name="profileId">Id ผู้ใช้งาน</param>
/// <returns></returns>
/// <response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
[HttpGet("historanfaskfa")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status500InternalServerError)]
public async Task<ActionResult<ResponseObject>> DumpDB([FromHeader] string authorization)
{
try
{
var token = string.Empty;
if (AuthenticationHeaderValue.TryParse(authorization, out var headerValue))
{
// we have a valid AuthenticationHeaderValue that has the following details:
var scheme = headerValue.Scheme;
token = headerValue.Parameter;
// scheme will be "Bearer"
// parmameter will be the token itself.
}
await _repository.DumpDB(token);
return Success();
}
catch
{
throw;
}
}
#endregion
}
}