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

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