예제 #1
0
파일: Course.cs 프로젝트: cyber-gh/ELearn
 public Course(CourseOverview overview, IEnumerable <Lesson> lessons, IEnumerable <Review> reviews)
 {
     Overview = overview;
     Reviews  = reviews;
     Lessons  = lessons;
 }
예제 #2
0
파일: Course.cs 프로젝트: cyber-gh/ELearn
 public Course(CourseOverview overview)
 {
     Overview = overview;
     Reviews  = new List <Review>();
     Lessons  = new List <Lesson>();
 }