public GetPostsController(IGetPosts the_get_posts_query)
 {
     get_posts_query = Guard.IsNotNull(the_get_posts_query, "the_get_posts_query");
 }
Exemple #2
0
 public FeedService(IAddPost addPost, IGetPosts getPosts)
 {
     _addPost  = addPost;
     _getPosts = getPosts;
 }