Uat_Study
parent
f2dc43b47f
commit
d158c13c7c
|
@ -256,7 +256,9 @@ namespace IRaCIS.Core.Application.Service
|
||||||
{
|
{
|
||||||
var dic = answers.Where(y => y.ClinicalFormId == x).ToDictionary(x => x.QuestionId.ToString(), x => x.Answer);
|
var dic = answers.Where(y => y.ClinicalFormId == x).ToDictionary(x => x.QuestionId.ToString(), x => x.Answer);
|
||||||
dic.Add("clinicalFormId", x.ToString());
|
dic.Add("clinicalFormId", x.ToString());
|
||||||
result.AnswerList.Add(dic);
|
dic.Add("trialId", inDto.TrialId.ToString());
|
||||||
|
dic.Add("subjectId", inDto.SubjectId.ToString());
|
||||||
|
result.AnswerList.Add(dic);
|
||||||
|
|
||||||
});
|
});
|
||||||
return result;
|
return result;
|
||||||
|
|
|
@ -57,7 +57,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
{
|
{
|
||||||
public Guid SubjectId { get; set; }
|
public Guid SubjectId { get; set; }
|
||||||
|
|
||||||
public Guid ClinicalDataTrialSetId { get; set; }
|
|
||||||
|
public Guid TrialId { get; set; }
|
||||||
|
|
||||||
|
public Guid ClinicalDataTrialSetId { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue