Compare commits
No commits in common. "8829723c19a275ab6890b14232e8f4904d2be373" and "cb7098830cd6c2f828cf3300008dde24b9dfdecd" have entirely different histories.
8829723c19
...
cb7098830c
|
|
@ -147,7 +147,6 @@ builder.Services.AddJWTAuthSetup(_configuration);
|
|||
|
||||
#region MassTransit
|
||||
//masstransit组件 也支持MediatR 中介者模式,但是支持分布式,考虑后续,所以在次替代MediatR
|
||||
//参考链接:https://masstransit.io/documentation/concepts/mediator#scoped-mediator
|
||||
builder.Services.AddMediator(cfg =>
|
||||
{
|
||||
cfg.AddConsumer<ConsistencyCheckConsumer>();
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
using IRaCIS.Core.Domain.Share;
|
||||
|
||||
namespace IRaCIS.Core.Application.Service.ImageAndDoc.DTO
|
||||
namespace IRaCIS.Core.Application.Service.ImageAndDoc.DTO
|
||||
{
|
||||
public class SubjectImageUploadDTO
|
||||
{
|
||||
|
|
@ -21,8 +19,6 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc.DTO
|
|||
|
||||
public Guid? SourceSubjectVisitId { get; set; }
|
||||
|
||||
public ReadingTaskState ReadingTaskState { get; set; }
|
||||
|
||||
public List<StudyBasicInfo> OrginalStudyList { get; set; }
|
||||
|
||||
public List<StudyBasicInfo> UploadStudyList { get; set; }
|
||||
|
|
|
|||
|
|
@ -498,8 +498,6 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
public string TaskName { get; set; }
|
||||
public Guid? SourceSubjectVisitId { get; set; }
|
||||
|
||||
public ReadingTaskState ReadingTaskState { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -171,7 +171,6 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
|
|||
SubjectCode = u.IsAnalysisCreate == true ? u.BlindSubjectCode : u.Subject.Code,
|
||||
TaskBlindName = u.TaskBlindName,
|
||||
TaskName = u.TaskName,
|
||||
ReadingTaskState = u.ReadingTaskState,
|
||||
|
||||
SourceSubjectVisitId = u.SourceSubjectVisitId,
|
||||
|
||||
|
|
@ -689,7 +688,6 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
|
|||
SubjectCode = u.IsSelfAnalysis == true ? u.BlindSubjectCode : u.Subject.Code,
|
||||
TaskBlindName = u.TaskBlindName,
|
||||
TaskName = u.TaskName,
|
||||
ReadingTaskState=u.ReadingTaskState,
|
||||
SourceSubjectVisitId = u.SourceSubjectVisitId,
|
||||
VisitTaskId = u.Id,
|
||||
|
||||
|
|
|
|||
|
|
@ -126,7 +126,7 @@ namespace IRaCIS.Core.Application.Service
|
|||
}
|
||||
|
||||
//My project is a monolithic project,And the efcore context repository is scoped registered.
|
||||
public async Task<IResponseOutput> TestMasstransitMeditor([FromServices] IScopedMediator _mediator, [FromServices] IRepository<TestLength> _testLengthRepository)
|
||||
public async Task<IResponseOutput> TestMasstransitMeditor([FromServices] IMediator _mediator, [FromServices] IRepository<TestLength> _testLengthRepository)
|
||||
{
|
||||
|
||||
var dbContext = _testLengthRepository._dbContext;
|
||||
|
|
|
|||
Loading…
Reference in New Issue