public IList <Inscricao> GetAll()
 {
     return(_inscricaoRepository.FilterBy(a => a.Id > 0, a => a.Estudante, a => a.Curso).ToList());
 }