コード例 #1
0
ファイル: EmailController.cs プロジェクト: huchao007/mvcforum
 public EmailController(ILoggingService loggingService, IUnitOfWorkManager unitOfWorkManager, IMembershipService membershipService, 
     ILocalizationService localizationService, IRoleService roleService, ISettingsService settingsService,
     ITopicNotificationService topicNotificationService, ICategoryNotificationService categoryNotificationService, ICategoryService categoryService,
     ITopicService topicService, ITopicTagService topicTagService, ITagNotificationService tagNotificationService)
     : base(loggingService, unitOfWorkManager, membershipService, localizationService, roleService, settingsService)
 {
     _topicNotificationService = topicNotificationService;
     _categoryNotificationService = categoryNotificationService;
     _categoryService = categoryService;
     _topicService = topicService;
     _topicTagService = topicTagService;
     _tagNotificationService = tagNotificationService;
 }
コード例 #2
0
ファイル: EmailController.cs プロジェクト: yaobos/mvcforum
 public EmailController(ILoggingService loggingService, IUnitOfWorkManager unitOfWorkManager, IMembershipService membershipService,
                        ILocalizationService localizationService, IRoleService roleService, ISettingsService settingsService,
                        ITopicNotificationService topicNotificationService, ICategoryNotificationService categoryNotificationService, ICategoryService categoryService,
                        ITopicService topicService, ITopicTagService topicTagService, ITagNotificationService tagNotificationService)
     : base(loggingService, unitOfWorkManager, membershipService, localizationService, roleService, settingsService)
 {
     _topicNotificationService    = topicNotificationService;
     _categoryNotificationService = categoryNotificationService;
     _categoryService             = categoryService;
     _topicService           = topicService;
     _topicTagService        = topicTagService;
     _tagNotificationService = tagNotificationService;
 }
コード例 #3
0
 public EmailController(ILoggingService loggingService, IMembershipService membershipService,
                        ILocalizationService localizationService, IRoleService roleService, ISettingsService settingsService,
                        ITopicNotificationService topicNotificationService,
                        ICategoryNotificationService categoryNotificationService, ICategoryService categoryService,
                        ITopicService topicService, ITopicTagService topicTagService,
                        ITagNotificationService tagNotificationService, ICacheService cacheService, IMvcForumContext context)
     : base(loggingService, membershipService, localizationService, roleService,
            settingsService, cacheService, context)
 {
     _topicNotificationService    = topicNotificationService;
     _categoryNotificationService = categoryNotificationService;
     _categoryService             = categoryService;
     _topicService           = topicService;
     _topicTagService        = topicTagService;
     _tagNotificationService = tagNotificationService;
 }
コード例 #4
0
ファイル: TopicController.cs プロジェクト: petemidge/mvcforum
 public TopicController(ILoggingService loggingService, IUnitOfWorkManager unitOfWorkManager, IMembershipService membershipService, IRoleService roleService, ITopicService topicService, IPostService postService,
     ICategoryService categoryService, ILocalizationService localizationService, ISettingsService settingsService, ITopicTagService topicTagService, IMembershipUserPointsService membershipUserPointsService,
     ICategoryNotificationService categoryNotificationService, IEmailService emailService, ITopicNotificationService topicNotificationService, IPollService pollService,
     IPollAnswerService pollAnswerService, IBannedWordService bannedWordService, IVoteService voteService, IFavouriteService favouriteService, IUploadedFileService uploadedFileService, ICacheService cacheService, ITagNotificationService tagNotificationService)
     : base(loggingService, unitOfWorkManager, membershipService, localizationService, roleService, settingsService)
 {
     _topicService = topicService;
     _postService = postService;
     _categoryService = categoryService;
     _topicTagService = topicTagService;
     _membershipUserPointsService = membershipUserPointsService;
     _categoryNotificationService = categoryNotificationService;
     _emailService = emailService;
     _topicNotificationService = topicNotificationService;
     _pollService = pollService;
     _pollAnswerService = pollAnswerService;
     _bannedWordService = bannedWordService;
     _voteService = voteService;
     _favouriteService = favouriteService;
     _uploadedFileService = uploadedFileService;
     _cacheService = cacheService;
     _tagNotificationService = tagNotificationService;
 }