//
        // GET: /CardHolder/CardHolderBalance

        public ActionResult CardHolderBalance()
        {
            List <GiftCardBalance> GiftCardBalances = new List <GiftCardBalance>();

            try
            {
                String             CardHolderName = this.HttpContext.User.Identity.Name;
                ICardHolderService CardHService   = new CardHolderService();
                GiftCardBalances = CardHService.GetCardHolderGiftCardBalances(CardHolderName);
            }
            catch (Exception Ex)
            {
                ViewData["Message"] = "Failure while trying to read balance " + Common.StandardExceptionErrorMessage(Ex);
            }
            return(View(GiftCardBalances));
        }