Example #1
0
        public ActionResult OrderSummary()
        {
            IEnumerable <ProductModel> ie = Session["ie"] as IEnumerable <ProductModel>;
            Customer             c        = Session["ActiveCustomer"] as Customer;
            CustomerModelManager cmM      = new CustomerModelManager();
            AddressModel         a        = cmM.FetchAddressById(c.ShippingAddressId);

            return(View(a));
        }