public UsersController( IUsersService usersService, IUserFollowersService userFollowersService, IStarRatingsService starRatingsService, IReviewsService reviewsService) { this.usersService = usersService; this.userFollowersService = userFollowersService; this.starRatingsService = starRatingsService; this.reviewsService = reviewsService; }
public Application(IPostService postService, IUserFollowersService userFollowersService, IClock clock) { this.postService = postService; this.userFollowersService = userFollowersService; this.clock = clock; }
public UserFollowersController(IUserFollowersService usersFollowersService) { this.usersFollowersService = usersFollowersService; }
public PostService(IPostRepository postRepository, IUserFollowersService userFollowersService) { this.postRepository = postRepository; this.userFollowersService = userFollowersService; }