Esempio n. 1
0
 public Upload(Course_elearn course, DateTime date, string title, string desc, string server_path) //for both and file uploads
 {
     this.course      = course;
     this.date        = date;
     this.title       = title;
     this.desc        = desc;
     this.server_path = server_path;
 }
Esempio n. 2
0
 public Upload(Course_elearn course, DateTime date, string title, string desc) // for video upload only
 {
     this.course = course;
     this.date   = date;
     this.title  = title;
     this.desc   = desc;
     //this.server_path = server_path;
 }
Esempio n. 3
0
 public Testimonial(string staff_name, string quote, User user, Course_elearn course, string title)
 {
     this.staff_name = staff_name;
     this.quote      = quote;
     this.user       = user;
     this.course     = course;
     this.title      = title;
 }
Esempio n. 4
0
 public Quiz(int quizID, Course_elearn mainCourse, string title, string description, int passingGrade, string status, string randomOrder)
 {
     this.quizID       = quizID;
     this.mainCourse   = mainCourse;
     this.title        = title;
     this.description  = description;
     this.passingGrade = passingGrade;
     this.status       = status;
     this.randomOrder  = randomOrder;
 }
Esempio n. 5
0
 public void setCourse_elearn(Course_elearn c)
 {
     this.course = c;
 }
Esempio n. 6
0
 public void set_course_elearn(Course_elearn course)
 {
     this.course = course;
 }
Esempio n. 7
0
 public void setMainCourse(Course_elearn mainCourse)
 {
     this.mainCourse = mainCourse;
 }