public IList <Questao> GetAll() { try { return(_questaoDAO.GetAll()); } catch (Exception e) { throw new Exception(e.Message); } }
public IQueryable <tb_questao> GetAll() { return(_DAO.GetAll()); }
public List <Questao> TodaQuestoes() { return(DAO.GetAll()); }