public ActionResult DeleteConfirmed(int id) { TipoPagamentoSet tipoPagamentoSet = tipoPagamentoRepository.ObterPorId(id); tipoPagamentoRepository.Apagar(tipoPagamentoSet); return(RedirectToAction("Index")); }
public IEnumerable <TipoPagamento> Delete(int id) { _repo.Apagar(id); return(_repo.SelecionarTudo()); }