예제 #1
0
        //
        // GET: /Opportunity/Details/5

        public ActionResult Details(int id)
        {
            Opportunity opportunity = _opportunityService.GetOpportunity(id);

            if (opportunity == null)
            {
                Response.StatusCode = (int)HttpStatusCode.NotFound;
                return(View("NotFound"));
            }

            return(View(opportunity));
        }