Uat_Study
he 2023-07-03 14:19:56 +08:00
parent f2dc43b47f
commit d158c13c7c
2 changed files with 7 additions and 2 deletions

View File

@ -256,6 +256,8 @@ namespace IRaCIS.Core.Application.Service
{
var dic = answers.Where(y => y.ClinicalFormId == x).ToDictionary(x => x.QuestionId.ToString(), x => x.Answer);
dic.Add("clinicalFormId", x.ToString());
dic.Add("trialId", inDto.TrialId.ToString());
dic.Add("subjectId", inDto.SubjectId.ToString());
result.AnswerList.Add(dic);
});

View File

@ -57,6 +57,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
{
public Guid SubjectId { get; set; }
public Guid TrialId { get; set; }
public Guid ClinicalDataTrialSetId { get; set; }
}