public ActionResult Delete(int id) { try { _clienteApp.Deletar(id); TempData["sucesso"] = "Cliente excluído com sucesso"; return(RedirectToAction("Index")); } catch { TempData["erro"] = "Erro ao excluir cliente"; return(RedirectToAction("Index")); } }
public ActionResult ExcluirConfirma(int id) { _clienteAppServico.Deletar(id); return(RedirectToAction("Index")); }