Exemplo n.º 1
0
 public PostsBackend(IPostsProxy postProxy)
 {
     _postsProxy = postProxy;
     GetPostInfo();
 }
Exemplo n.º 2
0
 public PostHistoryBackend(IPostsProxy postsProxy)
 {
     _postsProxy = postsProxy;
     GetPostInfo();
 }
Exemplo n.º 3
0
 public CommentHistoryBackend(ICommentsProxy commentsProxy, IPostsProxy postsProxy)
 {
     _commentsProxy = commentsProxy;
     _postsProxy    = postsProxy;
     GetCommentInfo();
 }
Exemplo n.º 4
0
 public ViewPostBackend(ICommentsProxy commentsProxy, IPostsProxy postsProxy)
 {
     _commentsProxy = commentsProxy;
     _postsProxy    = postsProxy;
 }
Exemplo n.º 5
0
 public HomeBackend(IPostsProxy postsProxy)
 {
     _postsProxy = postsProxy;
     GetPostInfo();
 }
 public CreatePostBackend(IPostsProxy postsProxy)
 {
     _postsProxy = postsProxy;
 }