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