예제 #1
0
        public ActionResult OrderDetail(int id)
        {
            var transportOrder = _transportOrderService.FindById(id);

            ViewBag.HubID            = _transportOrderService.GetHubs();
            ViewBag.TransportOrderID = id;
            var transportContract = GetTransportOrder(transportOrder);

            return(View(transportContract));
        }