コード例 #1
0
ファイル: CommentLikeImpl.cs プロジェクト: Xishang7707/Huobi
 public CommentLikeImpl(HuobiContext db)
 {
     this.m_db           = db;
     this.m_iCommentLike = this;
 }
コード例 #2
0
ファイル: CommentImpl.cs プロジェクト: Xishang7707/Huobi
 public CommentImpl(HuobiContext db, ICommentLike commentLike)
 {
     this.m_db          = db;
     this.m_comment     = this;
     this.m_commentLike = commentLike;
 }
コード例 #3
0
 public CommentsController(IComment commentServer, IUser userServer, ICommentLike commentLikeServer)
 {
     this.commentServer     = commentServer;
     this.userServer        = userServer;
     this.commentLikeServer = commentLikeServer;
 }