コード例 #1
0
ファイル: SpendsController.cs プロジェクト: bhenn/SpendCA
        public IActionResult Delete(int?id)
        {
            if (id == null)
            {
                return(NotFound());
            }

            _spendService.Delete((int)id, GetUserId());

            return(RedirectToAction("Index"));
        }
コード例 #2
0
ファイル: SpendsController.cs プロジェクト: bhenn/SpendCA
 public ActionResult <Spend> DeleteSpend(int id)
 {
     try
     {
         return(_spendService.Delete(id, GetUserId()));
     }
     catch (ItemNotFoundException ex)
     {
         return(NotFound(ex.Message));
     }
 }