Пример #1
0
        public void ExcluirAluno(int id)
        {
            _alunoDao = new AlunoDao();

            var linhasAfetadas = _alunoDao.ExcluiAluno(id);

            if (linhasAfetadas == 0)
            {
                throw new AlunoNaoExcluidoException();
            }
        }