Example #1
0
 public ActionResult Delete(string id, FormCollection collection)
 {
     try
     {
         // TODO: Add delete logic here
         GrupoCEN grupoCEN = new GrupoCEN();
         grupoCEN.Destroy(id);
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }