Exemplo n.º 1
0
 public FollowerService(IFollowForumRepository forumRepo,
                        IFollowTopicRepository topicRepo,
                        IUserProvider userProvider,
                        ILogger logger)
 {
     this.forumRepo    = forumRepo;
     this.topicRepo    = topicRepo;
     this.logger       = logger;
     this.userProvider = userProvider;
 }
Exemplo n.º 2
0
		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;
		}