既往缓存代码修改,缓存key 整理
This commit is contained in:
@@ -40,7 +40,6 @@ namespace IRaCIS.Core.Application
|
||||
private readonly IRepository<ReadingQuestionCriterionSystem> _readingQuestionCriterionSystemRepository;
|
||||
private readonly IRepository<ClinicalDataTrialSet> _clinicalDataTrialSetRepository;
|
||||
private readonly IRepository<ReadingCriterionPage> _readingCriterionPageRepository;
|
||||
private readonly IEasyCachingProvider _provider;
|
||||
private readonly IOrganInfoService _iOrganInfoService;
|
||||
private readonly IRepository<TaskAllocationRule> _taskAllocationRuleRepository;
|
||||
private readonly IRepository<ReadingSystemCriterionDictionary> _readingCriterionDictionaryRepository;
|
||||
@@ -69,7 +68,6 @@ namespace IRaCIS.Core.Application
|
||||
IRepository<ReadingSystemCriterionDictionary> readingCriterionDictionaryRepository,
|
||||
IRepository<ReadingTrialCriterionDictionary> readingTrialCriterionDictionaryRepository,
|
||||
IReadingQuestionService iReadingQuestionService,
|
||||
IEasyCachingProvider provider,
|
||||
IOrganInfoService iOrganInfoService,
|
||||
IRepository<TrialCriterionAdditionalAssessmentType> trialCriterionAdditionalAssessmentTypeRepository,
|
||||
IRepository<VisitTask> visitTaskRepository,
|
||||
@@ -93,7 +91,6 @@ namespace IRaCIS.Core.Application
|
||||
this._systemCriterionDictionaryCode = systemCriterionDictionaryCode;
|
||||
this._readingQuestionCriterionSystemRepository = readingQuestionCriterionSystemRepository;
|
||||
this._clinicalDataTrialSetRepository = clinicalDataTrialSetRepository;
|
||||
this._provider = provider;
|
||||
this._iOrganInfoService = iOrganInfoService;
|
||||
this._readingTableQuestionTrialRepository = readingTableQuestionTrialRepository;
|
||||
this._readingCriterionPageRepository = readingCriterionPageRepository;
|
||||
|
||||
@@ -23,7 +23,6 @@ namespace IRaCIS.Application.Services
|
||||
public class TrialService : BaseService, ITrialService
|
||||
{
|
||||
|
||||
private readonly IEasyCachingProvider _provider;
|
||||
private readonly IRepository<Trial> _trialRepository;
|
||||
private readonly IRepository<TrialUser> _trialUserRepository;
|
||||
private readonly IOptionsMonitor<ServiceVerifyConfigOption> _verifyConfig;
|
||||
@@ -31,12 +30,11 @@ namespace IRaCIS.Application.Services
|
||||
public bool TrialExpeditedChange { get; set; } = false;
|
||||
|
||||
|
||||
public TrialService(IEasyCachingProvider provider, IRepository<Trial> trialRepository,
|
||||
public TrialService(IRepository<Trial> trialRepository,
|
||||
IRepository<TrialUser> trialUserRepository, IOptionsMonitor<ServiceVerifyConfigOption> verifyConfig
|
||||
)
|
||||
{
|
||||
_verifyConfig = verifyConfig;
|
||||
_provider = provider;
|
||||
_trialRepository = trialRepository;
|
||||
this._trialUserRepository = trialUserRepository;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user