Beispiel #1
0
        List <Plan> _planQueue_GetAll()
        {
            List <Plan> planList = _context.Set <Plan>()
                                   .Include(pl => pl.degreeProgram)
                                   .Include(pl => pl.user)
                                   .Include(pl => pl.semester)
                                   .ToList();

            return(planList);
        }