public ActionResult Atualiza(int id) { var dao = new SoftwareDAO(); Software software = dao.BuscaPorId(id); return(View(software)); }
public ActionResult Alterar(int id) { var dao = new SoftwareDAO(); Software software = dao.BuscaPorId(id); ViewBag.Software = software; return(View(software)); }