Exemplo n.º 1
0
 /// <summary>
 /// shows all the counters.
 /// </summary>
 private void counters()
 {
     Console.WriteLine("\n" +
                       "           Litres Dispensed     {0:F0}L\n" +
                       "           Gross Income        £{1:F2}\n" +
                       "           Commission          £{2:F2}\n" +
                       "\n" +
                       "           Vehicles Seviced {3}         Vehicles Left {4}\n",
                       TransactionList.fuelSold(), TransactionList.grossMoney(), TransactionList.commission(),
                       TransactionList.totalSales(), VehiclesLeft.totalVehiclesLeft());
 }