public ActionResult Delete(int id, ProductDTO obj) { try { MyRepository repository = new MyRepository(); repository.DeleteProduct(id); return(RedirectToAction("Index")); } catch { return(View()); } }