no message
This commit is contained in:
parent
1374757bf2
commit
9567181117
5 changed files with 528 additions and 6 deletions
|
|
@ -517,7 +517,7 @@ namespace BMA.EHR.DisciplineResult.Service.Controllers
|
|||
var _req = new HttpRequestMessage(HttpMethod.Post, apiUrlDiscipline);
|
||||
var _res = await client.PostAsJsonAsync(apiUrlDiscipline, new
|
||||
{
|
||||
profileId = d.personId,
|
||||
profileId = data.PersonId,
|
||||
date = d.commandAffectDate,
|
||||
detail = data.DisciplineDisciplinary.Title,
|
||||
level = data.DisciplineDisciplinary.DisciplinaryFaultLevel,
|
||||
|
|
@ -564,7 +564,7 @@ namespace BMA.EHR.DisciplineResult.Service.Controllers
|
|||
var _req = new HttpRequestMessage(HttpMethod.Post, apiUrlDiscipline);
|
||||
var _res = await client.PostAsJsonAsync(apiUrlDiscipline, new
|
||||
{
|
||||
profileId = d.personId,
|
||||
profileId = data.PersonId,
|
||||
date = d.commandAffectDate,
|
||||
detail = data.DisciplineDisciplinary.Title,
|
||||
level = data.DisciplineDisciplinary.DisciplinaryFaultLevel,
|
||||
|
|
@ -610,7 +610,7 @@ namespace BMA.EHR.DisciplineResult.Service.Controllers
|
|||
var _req = new HttpRequestMessage(HttpMethod.Post, apiUrlDiscipline);
|
||||
var _res = await client.PostAsJsonAsync(apiUrlDiscipline, new
|
||||
{
|
||||
profileId = d.personId,
|
||||
profileId = data1.PersonId,
|
||||
date = d.commandAffectDate,
|
||||
detail = data1.DisciplineInvestigate.Title,
|
||||
level = "",
|
||||
|
|
@ -638,7 +638,7 @@ namespace BMA.EHR.DisciplineResult.Service.Controllers
|
|||
var _req = new HttpRequestMessage(HttpMethod.Post, apiUrlDiscipline);
|
||||
var _res = await client.PostAsJsonAsync(apiUrlDiscipline, new
|
||||
{
|
||||
profileId = d.personId,
|
||||
profileId = data2.PersonId,
|
||||
date = d.commandAffectDate,
|
||||
detail = data2.DisciplineDisciplinary.Title,
|
||||
level = data2.DisciplineDisciplinary.DisciplinaryFaultLevel,
|
||||
|
|
@ -684,7 +684,7 @@ namespace BMA.EHR.DisciplineResult.Service.Controllers
|
|||
var _req = new HttpRequestMessage(HttpMethod.Post, apiUrlDiscipline);
|
||||
var _res = await client.PostAsJsonAsync(apiUrlDiscipline, new
|
||||
{
|
||||
profileId = d.personId,
|
||||
profileId = data.PersonId,
|
||||
date = d.commandAffectDate,
|
||||
detail = data.DisciplineDisciplinary.Title,
|
||||
level = data.DisciplineDisciplinary.DisciplinaryFaultLevel,
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ namespace BMA.EHR.Discipline.Service.Requests
|
|||
public class DisciplineDataResponse
|
||||
{
|
||||
public Guid id { get; set; } = Guid.Empty;
|
||||
public Guid personId { get; set; } = Guid.Empty;
|
||||
// public Guid personId { get; set; } = Guid.Empty;
|
||||
public Guid? commandId { get; set; } = Guid.Empty;
|
||||
|
||||
public DateTime? commandAffectDate { get; set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue