Пример #1
0
        private MainLoop()
        {
            // For Testing
            BillData testBill = new BillData("Test Bill", 43.20);

            BillDatabase.Instance.AddBill(testBill);

            currentScreen = new DefaultScreen();
        }
Пример #2
0
 public PrintBillInfo(BillData bill)
 {
     this.bill = bill;
 }
Пример #3
0
 public void AddBill(BillData bill)
 {
     database.Add(bill);
 }