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