Exemplo n.º 1
0
        public ActionResult SoftwareDetails(int id)
        {
            ViewBag.OthetSoftware = _softwareBusiness.Get().Take(4);
            Software software = _softwareBusiness.GetById(id);

            return(View(software));
        }
Exemplo n.º 2
0
        public ActionResult Edit(int id)
        {
            Software software = _softwareBusiness.GetById(id);

            return(View(software));
        }