コード例 #1
0
ファイル: CoursesController.cs プロジェクト: RagnarRa/Moo2
        public List <StudentDTO> GetStudentsInWaitingList(int courseID)
        {
            List <StudentDTO> waitingList = null;

            try
            {
                waitingList = _service.GetWaitingListByCourseID(courseID);
            }
            catch (AppObjectNotFoundException)
            {
                throw new HttpResponseException(HttpStatusCode.NotFound);
            }

            return(waitingList);
        }