using System; using System.Collections.Generic; using Sleis.Models; namespace Sleis.Data { public interface IReportAttachmentData : IBaseData { ReportAttachment GetReportAttachment(int attachmentId); int GetReportAttachmentReportId(int reportId); List GetReportAttachments(int reportId); } }