@using Biskilog_Accounting.Shared.Interfaces @inject ICalculator m_calculator
@if (RecentTrans) {
Transaction summary for the past @(TotalNbrTransactions) transactions
}else{
Transaction summary for the period between : @(StartRange.ToString("dd MMM, yyyy")) to @(EndRange.ToString("dd MMM, yyyy"))
}
Total number of transactions made during the period : @(TotalNbrTransactions)
Total Revenue Generated during the period : @(m_calculator.FormatMoneyWithCurrency(TotalRevenue))
Total number of cancelled transactions during the period : @(TotalNbrCancelledRevenue)
Total Revenue lost to cancelled receipts during the period : @(m_calculator.FormatMoneyWithCurrency(TotalCancelledRevenue))