Esempio n. 1
0
        //open the statistics txt from shared drive
        public void Statistics()
        {
            _output = false;

            SupermarketServices.Statistics();

            NotifyOfPropertyChange(() => CanStatistics);
        }
Esempio n. 2
0
 private void SaveCustomerOrder()
 {
     SupermarketServices.SaveCustomerOrder(ZipCode, Total);
 }
Esempio n. 3
0
 private void SaveStatistics()
 {
     SupermarketServices.SaveStatistics(ZipCode, Total);
 }
Esempio n. 4
0
 private decimal CalculateTotal()
 {
     return(SupermarketServices.CalculateTotal(ShoppingCart));
 }