public ActionResult SoftwareDetails(int id) { ViewBag.OthetSoftware = _softwareBusiness.Get().Take(4); Software software = _softwareBusiness.GetById(id); return(View(software)); }
public ActionResult Edit(int id) { Software software = _softwareBusiness.GetById(id); return(View(software)); }