Exemple #1
0
        public ActionResult OrderConfirm(string seats, int scheduleId)
        {
            var customer = System.Web.HttpContext.Current.User.Identity.Name;

            _busService.BuyTicket(seats, scheduleId, customer);
            return(View());
        }