23 lines
664 B
C#
23 lines
664 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
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);
|
|
|
|
bool AddGlobalReport(GlobalTaskReportCommand globalTaskReportCommand);
|
|
|
|
|
|
|
|
AdReportDTO GetAdReport(Guid adId);
|
|
bool AddAdjudicationReport(ADReportCommand adReportCommand);
|
|
}
|
|
|
|
|
|
|
|
} |