// // GET: /CloudinessTemplate/Delete/5 public ActionResult Delete(int id) { IRepository <Models.Cloudiness> repo = new CloudinessRepository(); repo.Delete(repo.GetById(id)); return(RedirectToAction("Index")); }
public ActionResult Delete(int id, FormCollection collection) { try { IRepository <Models.Cloudiness> repo = new CloudinessRepository(); repo.Delete(repo.GetById(id)); return(RedirectToAction("Index")); } catch { return(View()); } }