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