Skip to content

Commit

Permalink
upcoming function
Browse files Browse the repository at this point in the history
  • Loading branch information
karishmapatil18 committed Sep 24, 2022
1 parent b642e22 commit e67b7e6
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,15 @@ public List<Courses> coursesbystudentid(int id) //get all courses by student id
return courses;
}


public Courses studentupcommingcourse(int sid) //gives upcoming one course lecture for particular student
{
Courses course;
course=coursesRepository.upcomming_course_student(sid);

return course;

}


}

0 comments on commit e67b7e6

Please sign in to comment.