public ActionResult Delete(int id, FormCollection collection) { try { if (EntregaDAO.Excluir(id)) { return(RedirectToAction("Index")); } else { return(View(EntregaDAO.BuscarPorId(id))); } } catch { return(View(EntregaDAO.BuscarPorId(id))); } }
public void Deletar() { Entrega e = EntregaDAO.BuscarPorId(EntregaDAO.getLastId()); Assert.IsTrue(EntregaDAO.Excluir(EntregaDAO.getLastId())); }