Пример #1
0
 public PostsBackend(IPostsProxy postProxy)
 {
     _postsProxy = postProxy;
     GetPostInfo();
 }
Пример #2
0
 public PostHistoryBackend(IPostsProxy postsProxy)
 {
     _postsProxy = postsProxy;
     GetPostInfo();
 }
Пример #3
0
 public CommentHistoryBackend(ICommentsProxy commentsProxy, IPostsProxy postsProxy)
 {
     _commentsProxy = commentsProxy;
     _postsProxy    = postsProxy;
     GetCommentInfo();
 }
Пример #4
0
 public ViewPostBackend(ICommentsProxy commentsProxy, IPostsProxy postsProxy)
 {
     _commentsProxy = commentsProxy;
     _postsProxy    = postsProxy;
 }
Пример #5
0
 public HomeBackend(IPostsProxy postsProxy)
 {
     _postsProxy = postsProxy;
     GetPostInfo();
 }
 public CreatePostBackend(IPostsProxy postsProxy)
 {
     _postsProxy = postsProxy;
 }