public FollowerService(IFollowForumRepository forumRepo, IFollowTopicRepository topicRepo, IUserProvider userProvider, ILogger logger) { this.forumRepo = forumRepo; this.topicRepo = topicRepo; this.logger = logger; this.userProvider = userProvider; }
public FollowerService(IFollowForumRepository forumRepo, IFollowTopicRepository topicRepo, IPermissionService permService, IUserProvider userProvider, ILogger logger) { this.forumRepo = forumRepo; this.topicRepo = topicRepo; this.logger = logger; this.userProvider = userProvider; this.permService = permService; }