public ActionResult DeleteParkingLot(int id, IFormCollection form)
 {
     parkingLotService.Delete(id);
     return(RedirectToAction("Index"));
 }