Exemple #1
0
 public CommentLikeImpl(HuobiContext db)
 {
     this.m_db           = db;
     this.m_iCommentLike = this;
 }
Exemple #2
0
 public CommentImpl(HuobiContext db, ICommentLike commentLike)
 {
     this.m_db          = db;
     this.m_comment     = this;
     this.m_commentLike = commentLike;
 }
Exemple #3
0
 public CommentsController(IComment commentServer, IUser userServer, ICommentLike commentLikeServer)
 {
     this.commentServer     = commentServer;
     this.userServer        = userServer;
     this.commentLikeServer = commentLikeServer;
 }