Example #1
0
        public ContentResult Delete(int id)
        {
            categoriaRepository.ExcluirPorId(id);
            categoriaRepository.Salvar();

            return(Content("Categoria excluĂ­da com sucesso."));
        }