public ContentLabelController(IContentLabelService labelService,
                               ICategoryService categoryService,
                               ICacheManager cacheManager)
 {
     this._labelService    = labelService;
     this._categoryService = categoryService;
     this._cacheManager    = cacheManager;
 }
 public PostController(ICategoryService categoryService,
                       IPostService postService,
                       IContentLabelService labelService,
                       ISettingService settingService,
                       ICustomerService customerService,
                       IPostLabelService postLabelService,
                       IPostCommentService commentService,
                       ICacheManager cacheManager)
 {
     this._categoryService  = categoryService;
     this._postService      = postService;
     this._labelService     = labelService;
     this._settingService   = settingService;
     this._customerService  = customerService;
     this._cacheManager     = cacheManager;
     this._postLabelService = postLabelService;
     this._commentService   = commentService;
 }