添加项目文件。
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using IRaCIS.Core.Infrastructure.Extention;
|
||||
|
||||
namespace IRaCIS.Core.Application.Contracts
|
||||
{
|
||||
public interface IGlobalService
|
||||
{
|
||||
//string GetCommentsForSubject(Guid globalId);
|
||||
IEnumerable<HistoryVisitRSDTO> GetHistoryVisitRsList(Guid trialId, Guid subjectId, decimal visitNum, Guid globalId,string globalCode);
|
||||
|
||||
PreviousGlobalReadsView GetHistoryGlobalRsList(Guid trialId, Guid subjectId, decimal visitNum, Guid globalId);
|
||||
|
||||
IResponseOutput AddGlobalReport(GlobalTaskReportCommand globalTaskReportCommand);
|
||||
|
||||
|
||||
|
||||
AdReportDTO GetAdReport(Guid adId);
|
||||
IResponseOutput AddAdjudicationReport(ADReportCommand adReportCommand);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace IRaCIS.Core.Application.Contracts
|
||||
{
|
||||
public interface IReportService
|
||||
{
|
||||
//bool SaveReport(ReportCommand reportCommand);
|
||||
|
||||
/// <summary> 添加基线期病灶标识及测量信息 </summary>
|
||||
bool AddLesion(List<LesionInformation> lesionInformation, ReportDTO report);
|
||||
///// <summary> 获取基线期信息 <summary>
|
||||
//IList<LesionInformation> GetBLLesion(string trialCode, string subjectCode);
|
||||
|
||||
/// <summary>
|
||||
/// 获取访视病灶信息
|
||||
/// </summary>
|
||||
VisitLesionInfo GetVisitLineLesion(string trialCode, string subjectCode, decimal visitNum,string tpCode);
|
||||
|
||||
bool SaveVisitReport(VisitReportCommand visitReportCommand);
|
||||
bool AddBaseLineLesion(BaseLineReportCommand baseLineReportCommand);
|
||||
BaseLineReportDTO getBLLineLesion(string trialCode, string subjectCode, string tpCode);
|
||||
|
||||
bool SubmiteReport(Guid tpId);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using IRaCIS.Application.Contracts;
|
||||
using IRaCIS.Core.Infrastructure.Extention;
|
||||
|
||||
namespace IRaCIS.Application.Interfaces
|
||||
{
|
||||
public interface IReviewerReadingService
|
||||
{
|
||||
PageOutput<WorkloadReadingDTO> GetWorkloadList(WorkloadQueryParam param);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user