no message

This commit is contained in:
Kittapath 2024-07-08 08:55:09 +07:00
parent ba9771f054
commit a6dbf393d8
3 changed files with 4 additions and 4 deletions

View file

@ -265,7 +265,7 @@ namespace BMA.EHR.Report.Service.Controllers
report = (Telerik.Reporting.Report)reportPackager.UnpackageDocument(sourceStream);
}
var CitizenId = "";
var apiUrl = $"{_configuration["API"]}org/profile/kp7-short/{id}";
var apiUrl = $"{_configuration["API"]}/org/profile/kp7-short/{id}";
using (var client = new HttpClient())
{
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token.Replace("Bearer ", ""));
@ -497,7 +497,7 @@ namespace BMA.EHR.Report.Service.Controllers
var CitizenId = "";
var FullName = "";
var OcFullPath = "";
var apiUrl = $"{_configuration["API"]}org/profile/kk1/{id}";
var apiUrl = $"{_configuration["API"]}/org/profile/kk1/{id}";
using (var client = new HttpClient())
{
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token.Replace("Bearer ", ""));