Exemplo n.º 1
0
        private MainLoop()
        {
            // For Testing
            BillData testBill = new BillData("Test Bill", 43.20);

            BillDatabase.Instance.AddBill(testBill);

            currentScreen = new DefaultScreen();
        }
Exemplo n.º 2
0
 public PrintBillInfo(BillData bill)
 {
     this.bill = bill;
 }
Exemplo n.º 3
0
 public void AddBill(BillData bill)
 {
     database.Add(bill);
 }