diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
index 09c81abf4..8ccb76c06 100644
--- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
+++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
@@ -358,11 +358,18 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
}
+ public class GetSystemReadingQuestionInDto
+ {
+ [NotDefault]
+ public Guid ReadingQuestionCriterionSystemId { get; set; }
+
+
+ }
public class GetTrialReadingQuestionInDto
{
[NotDefault]
- public Guid ReadingQuestionCriterionSystemId { get; set; }
+ public Guid ReadingQuestionCriterionTrialId { get; set; }
public Guid? VisitTaskId { get; set; }
diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs
index 210182760..c20455421 100644
--- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs
@@ -627,10 +627,9 @@ namespace IRaCIS.Application.Services
///
///
[HttpPost]
- public async Task GetSystemReadingQuestion(GetTrialReadingQuestionInDto inDto)
+ public async Task GetSystemReadingQuestion(GetSystemReadingQuestionInDto inDto)
{
var result = new GetTrialReadingQuestionPageDto();
-
var query = from data in _readingQuestionSystem.Where(x => x.ReadingQuestionCriterionSystemId == inDto.ReadingQuestionCriterionSystemId)
select new GetTrialReadingQuestionOutDto()
{