public HomeController(IArticleInfoAppService articleInfoAppService, IColumnInfoAppService columnInfoAppService)
 {
     _articleInfoAppService = articleInfoAppService;
     _columnInfoAppService  = columnInfoAppService;
 }
 public ArticleController(IArticleInfoAppService articleInfoAppService, ICacheManager cacheManager, IColumnInfoAppService columnInfoAppService)
 {
     _articleInfoAppService = articleInfoAppService;
     _cacheManager          = cacheManager;
     _columnInfoAppService  = columnInfoAppService;
 }