示例#1
0
 public Workbin(String id, String title, Member creator, List<Folder> folders)
 {
     workbinID = id;
     workbinTitle = title;
     workbinCreator = creator;
     workbinFolders = folders;
 }
示例#2
0
 public Announcement(String id, String name, String content, DateTime time, Member creator)
 {
     this.announceID = id;
     this.announceName = name;
     this.announceContent = content;
     this.announceTime = time;
     this.announceCreator = creator;
 }
示例#3
0
        public Webcast(String id, String title, Member creator, List<VideoGroup> videoGroups)
        {
            this.webcastId = id;
            this.webcastTitle = title;
            this.webcastCreator = creator;
            this.webcastVideoGroups = videoGroups;

            this.webcastAllVideoFiles = new List<VideoFile>();
        }
示例#4
0
 public PostTitle(String title, bool isHeading, String threadId, String headingId, 
     Member poster, string datetime)
 {
     this.postTitle = title;
     this.isPostHeading = isHeading;
     this.threadId = threadId;
     this.headingId = headingId;
     this.threadPoster = poster;
     this.threadDatetime = datetime;
 }
示例#5
0
 public File(string id, string name, string descrip, long size, string type, bool downloaded, DateTime uploadTime, Member creator)
 {
     fileId = id;
     fileName = name;
     fileDescrip = descrip;
     fileSize = size;
     fileType = type;
     fileDownloaded = downloaded;
     fileUploadTime = uploadTime;
     fileCreator = creator;
 }
示例#6
0
 public VideoFile(string id, string fileName, string mp4, string mp3, string title, string format,
     DateTime createDate, Member creator, bool isViewed)
 {
     this.videoId = id;
     this.videoFileName = fileName;
     this.videoMP4 = mp4;
     this.videoMP3 = mp3;
     this.videoTitle = title;
     this.videoFormat = format;
     this.videoCreateDate = createDate;
     this.videoCreator = creator;
     this.videoIsViewed = isViewed;
 }
示例#7
0
 public Lecturer(String id, Member member, String role)
 {
     lecturerId = id;
     lecturerMember = member;
     lecturerRole = role;
 }