Example #1
0
        protected decimal GetBasketGSTtotal()
        {
            decimal gstTotal = 0;

            foreach (BasketItem bi in _DisplayedBasketItems)
            {
                gstTotal += (InvoiceHelper.GetGSTPrice(bi));
            }

            return(gstTotal);
        }