示例#1
0
 public ArticlesController(IGetArticlesCommand searchArticlesCommand, IGetArticleCommand getOneArticleCommand, ICreateArticleCommand createArticleCommand, IEditArticleCommand editArticleCommand, IDeleteArticleCommand deleteArticleCommand)
 {
     _searchArticlesCommand = searchArticlesCommand;
     _getOneArticleCommand  = getOneArticleCommand;
     _createArticleCommand  = createArticleCommand;
     _editArticleCommand    = editArticleCommand;
     _deleteArticleCommand  = deleteArticleCommand;
 }
示例#2
0
 public HomeController(IGetArticlesCommand searchArticlesCommand, IGetCategoriesCommand searchCategoriesCommand)
 {
     _searchArticlesCommand   = searchArticlesCommand;
     _searchCategoriesCommand = searchCategoriesCommand;
 }