/// <summary>
        /// This will show everything in the order. how many items, the price, total price, and
        /// final total.
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        public ActionResult FullOrderDetails(int id)
        {
            double total = 0;
            List <FullOrderViewModel> fullorder = new List <FullOrderViewModel>();

            fullorder = _storeLevelPrograms.GetFullOrderDetails(id);
            foreach (var num in fullorder)
            {
                total += (num.pricePaid * num.qtyOrdered);
            }
            ViewBag.total = total;
            return(View("FullOrderViewModel", fullorder));
        }