示例#1
0
        // GET: PhoneController/Details/5
        public ActionResult Details(int id)
        {
            var phone = _phoneService.GetPhoneByID(id);

            return(View(phone));
        }