public void Remove(ICommentSubscribtion entity)
 {
     base.Remove((CommentSubscribtion)entity);
 }
Esempio n. 2
0
 public void Remove(ICommentSubscribtion entity)
 {
     entity.ForStory.UnsubscribeComment(entity.ByUser);
 }
 public void Add(ICommentSubscribtion entity)
 {
     base.Add((CommentSubscribtion)entity);
 }
Esempio n. 4
0
 public void Add(ICommentSubscribtion entity)
 {
     entity.ForStory.SubscribeComment(entity.ByUser);
 }