示例#1
0
        // GET: OrderController/Details/5
        public ActionResult Details(int id)
        {
            if (!_repo.isExists(id))
            {
                return(NotFound());
            }
            var order = _repo.FindById(id);
            var ord   = _mapper.Map <OrderVM>(order);

            return(View(ord));
        }