diff --git a/IRaCIS.Core.Application/TestService.cs b/IRaCIS.Core.Application/TestService.cs index 2c7f11dff..aa7668223 100644 --- a/IRaCIS.Core.Application/TestService.cs +++ b/IRaCIS.Core.Application/TestService.cs @@ -19,7 +19,10 @@ namespace IRaCIS.Application.Services _trialRepository = trialRepository; } - + public string Get() + { + return String.Empty; + } [HttpPost] public string Get(testModel testModel) diff --git a/IRaCIS.Core.Application/_MediatR/Handlers/ConsistencyVerificationHandler.cs b/IRaCIS.Core.Application/_MediatR/Handlers/ConsistencyVerificationHandler.cs index 33eea113a..a2c8e6bb6 100644 --- a/IRaCIS.Core.Application/_MediatR/Handlers/ConsistencyVerificationHandler.cs +++ b/IRaCIS.Core.Application/_MediatR/Handlers/ConsistencyVerificationHandler.cs @@ -2,9 +2,7 @@ using IRaCIS.Core.Application.MediatR.CommandAndQueries; using IRaCIS.Core.Domain.Share; -using IRaCIS.Core.Infra.EFCore; using MediatR; -using Newtonsoft.Json; using System.Linq.Expressions; namespace IRaCIS.Core.Application.MediatR.Handlers