using Common.Model.ReferralReports; using Repository.DAO.Application; using System.Collections.Generic; namespace Repository.DAO.ReferralReports { public interface IReferralReportsRepo : IApplicationDAO { List ViewStatement(ViewStatementModel statementModel); List ViewTransactionReport(ViewStatementModel statementModel); List ViewTop5TransactionReport(ViewStatementModel statementModel); } }