Пример #1
0
 public AddLecture(SetEvaluationActivity activity, string lecturer, string course, string title, string vidurl, string vidname, string noteurl, string notename)
 {
     this.activity = activity;
     this.lecturer = lecturer;
     this.course   = course;
     this.title    = title;
     this.vidurl   = vidurl;
     this.noteurl  = noteurl;
     this.vidname  = vidname;
     this.notename = notename;
 }
Пример #2
0
 public AddEvaluation(string lecturer, string title, string question, string a, string b, string c, string d, string answer, SetEvaluationActivity activity)
 {
     this.lecturer = lecturer;
     this.title    = title;
     this.question = question;
     this.a        = a;
     this.b        = b;
     this.c        = c;
     this.d        = d;
     this.answer   = answer;
     this.activity = activity;
 }