示例#1
0
 public ViewPostBackend(ICommentsProxy commentsProxy, IPostsProxy postsProxy)
 {
     _commentsProxy = commentsProxy;
     _postsProxy    = postsProxy;
 }
示例#2
0
 public CommentHistoryBackend(ICommentsProxy commentsProxy, IPostsProxy postsProxy)
 {
     _commentsProxy = commentsProxy;
     _postsProxy    = postsProxy;
     GetCommentInfo();
 }
示例#3
0
 public HomeBackend(ICommentsProxy commentsProxy)
 {
     _commentsProxy = commentsProxy;
 }