Ejemplo n.º 1
0
 public IList <Questao> GetAll()
 {
     try
     {
         return(_questaoDAO.GetAll());
     }
     catch (Exception e)
     {
         throw new Exception(e.Message);
     }
 }
Ejemplo n.º 2
0
 public IQueryable <tb_questao> GetAll()
 {
     return(_DAO.GetAll());
 }
Ejemplo n.º 3
0
 public List <Questao> TodaQuestoes()
 {
     return(DAO.GetAll());
 }