コード例 #1
0
        public ActionResult Delete(int id)
        {
            bool success = _itemRepo.Delete(id);

            return(RedirectToAction("Index"));
        }
コード例 #2
0
 public bool Delete(int Id)
 {
     return(itemRepo.Delete(Id));
 }