protected decimal GetBasketGSTtotal() { decimal gstTotal = 0; foreach (BasketItem bi in _DisplayedBasketItems) { gstTotal += (InvoiceHelper.GetGSTPrice(bi)); } return(gstTotal); }