using System; using System.Collections.Generic; namespace IRaCIS.Core.Application.Contracts { public interface IGlobalService { //string GetCommentsForSubject(Guid globalId); IEnumerable 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); } }