using Common.Model.ReferralReports; using System.Collections.Generic; namespace Business.ReferralReports { public interface IReferralReportsServices { List ViewStatement(ViewStatementModel statementModel); List ViewTransactionReport(ViewStatementModel statementModel); List ViewTop5TransactionReport(ViewStatementModel statementModel); } }