コード例 #1
0
 public List <CatCard> Get()
 {
     return(cardDAO.GetAllCards());
 }
コード例 #2
0
 public ActionResult <List <CatCard> > GetAllCards()
 {
     return(Ok(cardDAO.GetAllCards()));
 }
コード例 #3
0
ファイル: CatController.cs プロジェクト: ericCodeHub/catCards
 public List <CatCard> AllCatCards()
 //get ActionResult instead
 {
     return(cardDAO.GetAllCards());
 }