コード例 #1
0
 public async Task <IActionResult> GetAll()
 {
     try
     {
         var memo = _bll.GetAll();
         return(Ok(memo));
     }
     catch
     {
         return(StatusCode(500));
     }
 }
コード例 #2
0
ファイル: MotherBoardController.cs プロジェクト: grekod/HT_hw
 public async Task <IActionResult> GetAll()
 {
     try
     {
         var memo = _bll.GetAll();
         return(Ok(memo));
     }
     catch
     {
         return(BadRequest());
     }
 }