public ActionResult Delete(int id, bool?del)
 {
     if (client.DeleteLocation(id))
     {
         ViewBag.message = "Location ANNIHALATED";
     }
     else
     {
         ViewBag.message = "Could Not ANNIHALATE location";
     }
     return(RedirectToAction("Locations"));
 }