public AdminController(IHelpArticleService helpArticleService, IHelpCategoryService helpCategoryService, IThumbnailSettingService thumbnailSettingService, IThriftClient thriftClient)
 {
     _helpArticleService      = helpArticleService;
     _helpCategoryService     = helpCategoryService;
     _thumbnailSettingService = thumbnailSettingService;
     _thriftClient            = thriftClient;
 }
 public HelpsController(IHelpArticleService helpArticleService, IHelpCategoryService helpCategoryService)
 {
     _helpArticleService  = helpArticleService;
     _helpCategoryService = helpCategoryService;
 }