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.

13 lines
474 B

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