Exemplo n.º 1
0
 public CommonController(IUserService userService, IPictureService pictureService, IUserContext userContext, ITemplateService templateService, ICustomPageService customPageService)
 {
     this._userService       = userService;
     this._pictureService    = pictureService;
     this._userContext       = userContext;
     this._templateService   = templateService;
     this._customPageService = customPageService;
 }
Exemplo n.º 2
0
 public PageController(IUrlHelper urlHelper,
                       IUserContext userContext,
                       ITemplateService templateService,
                       IPermissionService permissionService,
                       ICustomPageService customPageService)
 {
     this._urlHelper         = urlHelper;
     this._userContext       = userContext;
     this._templateService   = templateService;
     this._permissionService = permissionService;
     this._customPageService = customPageService;
 }
Exemplo n.º 3
0
 public FeedbackController(IUserService userService, IPictureService pictureService, IUserContext userContext, ISliderService sliderService, ISettingService settingService, IEventService eventService, IVideoService videoService, ICommentService commentService, IReplyService replyService, IBlogService blogService, IFeedbackService feedbackService, IEmailService emailService, ITemplateService templateService, ICustomPageService customPageService)
 {
     this._userService       = userService;
     this._pictureService    = pictureService;
     this._userContext       = userContext;
     this._sliderService     = sliderService;
     this._settingService    = settingService;
     this._eventService      = eventService;
     this._videoService      = videoService;
     this._commentService    = commentService;
     this._replyService      = replyService;
     this._blogService       = blogService;
     this._templateService   = templateService;
     this._customPageService = customPageService;
     this._feedbackService   = feedbackService;
     this._emailService      = emailService;
 }
Exemplo n.º 4
0
 public DataTokenController(IUserService userService, IPictureService pictureService, IUserContext userContext, ISliderService sliderService, ISettingService settingService, IProductService productService, IVideoService videoService, ICommentService commentService, IReplyService replyService, IBlogService blogService, IFileService fileService, ITemplateService templateService, ICustomPageService customPageService, IPermissionService permissionService)
 {
     this._userService       = userService;
     this._pictureService    = pictureService;
     this._userContext       = userContext;
     this._sliderService     = sliderService;
     this._settingService    = settingService;
     this._productService    = productService;
     this._videoService      = videoService;
     this._commentService    = commentService;
     this._replyService      = replyService;
     this._blogService       = blogService;
     this._fileService       = fileService;
     this._templateService   = templateService;
     this._customPageService = customPageService;
     this._permissionService = permissionService;
 }