diff --git a/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs b/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs index 19adf30a..9cfb9ddf 100644 --- a/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs +++ b/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs @@ -52,7 +52,6 @@ namespace IRaCIS.Core.Application.Contracts [NotDefault] public Guid TrialId { get; set; } - //public Guid? SignId { get; set; } public Guid[] SubjectVisitIds { get; set; }=new Guid[0]; } diff --git a/IRaCIS.Core.Application/Service/QC/QCOperationService.cs b/IRaCIS.Core.Application/Service/QC/QCOperationService.cs index 6cf2bce3..58405aef 100644 --- a/IRaCIS.Core.Application/Service/QC/QCOperationService.cs +++ b/IRaCIS.Core.Application/Service/QC/QCOperationService.cs @@ -1260,7 +1260,7 @@ namespace IRaCIS.Core.Application.Image.QA - [HttpGet("{subjectVisitId:guid}")] + [HttpPost] public async Task VerifyCRCRequestToQC(CRCRequestToQCCommand cRCRequestToQCCommand) { var dbSubjectVisitList = await _subjectVisitRepository.Where(t => cRCRequestToQCCommand.SubjectVisitIds.Contains(t.Id), true).ToListAsync();