예제 #1
0
 public ScheduleItemComment(string body, DateTime created, UserAnonymous creator, long creatorIP, string creatorUserAgent, Guid id, Language language, DateTime modified, ScheduleItemCommentSmall parent, ScheduleItemSmall scheduleItem, string slug, EntityState state)
     : base(body, created, creator, creatorIP, creatorUserAgent, id, language, modified, null, state)
 {
     Parent       = parent;
     ScheduleItem = scheduleItem;
     Slug         = slug;
 }
 public ScheduleItemSubscription(Guid id, ScheduleItemSmall scheduleItem, string userName, string userEmail)
     : base(id)
 {
     ScheduleItem = scheduleItem;
     UserName     = userName;
     UserEmail    = userEmail;
 }
예제 #3
0
 public ScheduleItemComment(string body, Guid creatorUserID, string creatorName, string creatorEmail, string creatorEmailHash, string creatorUrl, long creatorIP, string creatorUserAgent, Language language, ScheduleItemCommentSmall parent, ScheduleItemSmall scheduleItem, string slug, EntityState state)
     : base(body, creatorUserID, creatorName, creatorEmail, creatorEmailHash, creatorUrl, creatorIP, creatorUserAgent, language, null, state)
 {
     ScheduleItem = scheduleItem;
     Parent       = parent;
     Slug         = slug;
 }
예제 #4
0
 public ScheduleItemComment(ScheduleItemSmall scheduleItem, Comment comment, string commentSlug)
     : base(comment.Body, comment.Created, comment.CreatorUserID, comment.CreatorName, comment.CreatorEmail, comment.CreatorEmailHash, comment.CreatorUrl, comment.CreatorIP, comment.CreatorUserAgent, comment.ID, comment.Language, comment.Modified, comment.Parent, comment.State)
 {
     Parent       = new ScheduleItemCommentSmall(comment.Parent, commentSlug);
     ScheduleItem = scheduleItem;
     Slug         = commentSlug;
 }
예제 #5
0
 public ScheduleItemComment(Guid id, ScheduleItemSmall scheduleItem, string slug)
     : this(id)
 {
     ScheduleItem = scheduleItem;
     Slug         = slug;
 }
 public ScheduleItemCommentShell(ScheduleItemSmall scheduleItem, Guid commentID, string commentSlug)
 {
     ScheduleItem = scheduleItem;
     CommentID    = commentID;
     CommentSlug  = commentSlug;
 }