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.
 
 
 
 
 

31 lines
1.0 KiB

using Common.Model.ReferralReports;
using Repository.DAO.ReferralReports;
using System.Collections.Generic;
namespace Business.ReferralReports
{
public class ReferralReportsServices : IReferralReportsServices
{
private readonly IReferralReportsRepo _referralReports;
public ReferralReportsServices(IReferralReportsRepo referralReports)
{
_referralReports = referralReports;
}
public List<ViewStatementResultModel> ViewStatement(ViewStatementModel statementModel)
{
return _referralReports.ViewStatement(statementModel);
}
public List<TransactionStatementModel> ViewTransactionReport(ViewStatementModel statementModel)
{
return _referralReports.ViewTransactionReport(statementModel);
}
public List<TransactionStatementModel> ViewTop5TransactionReport(ViewStatementModel statementModel)
{
return _referralReports.ViewTop5TransactionReport(statementModel);
}
}
}