You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
529 B

4 years ago
  1. using Common.Model.ReferralReports;
  2. using Repository.DAO.Application;
  3. using System.Collections.Generic;
  4. namespace Repository.DAO.ReferralReports
  5. {
  6. public interface IReferralReportsRepo : IApplicationDAO
  7. {
  8. List<ViewStatementResultModel> ViewStatement(ViewStatementModel statementModel);
  9. List<TransactionStatementModel> ViewTransactionReport(ViewStatementModel statementModel);
  10. List<TransactionStatementModel> ViewTop5TransactionReport(ViewStatementModel statementModel);
  11. }
  12. }