コード例 #1
0
ファイル: ArticlesController.cs プロジェクト: erkofer/Ledger
        //[Authorize]
        public IActionResult GetAllArticles()
        {
            IQueryable <Article> articles = _articleAppService.GetAllArticles();

            return(CreateResponse(articles));
        }
コード例 #2
0
 public List <Article> GetAllArticles(String username, int blogId)
 {
     return(_articleApplicationService.GetAllArticles(username, blogId));
 }