Exemplo n.º 1
0
        public void SetGradeViewBag(int?selectedID = null)
        {
            var _gradeDao = new GradeDAO();

            ViewBag.GradeID = new SelectList(_gradeDao.GetAll(), "Id", "GradeName", selectedID);
        }
Exemplo n.º 2
0
 public IQueryable <tb_grade> GetAll()
 {
     return(_DAO.GetAll());
 }