修改命名空间

This commit is contained in:
2022-06-17 13:19:13 +08:00
parent a68360a07c
commit d8a379dd55
45 changed files with 146 additions and 60 deletions
@@ -46,6 +46,18 @@ namespace IRaCIS.Core.Application.Service
}
/// <summary>
/// 获取应用Subject后 医生比率情况
/// </summary>
/// <returns></returns>
public async Task<List<TaskAllocationRuleView>> GetSubjectApplyDoctorTaskStatList(ApplySubjectCommand assignConfirmCommand)
{
var taskAllocationRuleQueryable = _taskAllocationRuleRepository.Where(t => t.TrialId == assignConfirmCommand.TrialId)
.ProjectTo<TaskAllocationRuleView>(_mapper.ConfigurationProvider, new { subjectIdList = assignConfirmCommand.SubjectIdList });
return await taskAllocationRuleQueryable.ToListAsync();
}
public async Task<IResponseOutput> AddOrUpdateTaskAllocationRule(TaskAllocationRuleAddOrEdit addOrEditTaskAllocationRule)