public List <AlunoDTO> ListarAlunos(int?id = null) { try { return(_alunoDB.ListarAlunosDB(id)); } catch (Exception e) { throw new Exception($"Erro: {e.Message}"); } }
public List <Aluno> ListarAluno() { try { var alunoBD = new AlunoDAO(); return(alunoBD.ListarAlunosDB()); } catch (Exception ex) { throw new Exception($"Erro ao listar Alunos: Erro => {ex.Message}"); } }
public List <AlunoDTO> ListarAlunos(int?id = null) { try { var alunoDB = new AlunoDAO(); return(alunoDB.ListarAlunosDB(id)); } catch (Exception ex) { throw new Exception($"Erro ao listar Alunos: Erro => {ex.Message}"); } }
public List <AlunoDTO> ListarAluno(int?id = null) { try { var alunoBD = new AlunoDAO(); return(alunoBD.ListarAlunosDB(id)); } catch (Exception ex) { throw new Exception($"Erro ao listar alunos: Erro => {ex.Message}"); } /* * var caminhoArquivo = HostingEnvironment.MapPath(@"~\App_Data\Base.json"); * var json = File.ReadAllText(caminhoArquivo); * var listaAlunos = JsonConvert.DeserializeObject<List<Aluno>>(json); * * return listaAlunos; */ }