public ActionResult DeleteLocation(int id)
 {
     if (shopService.DeleteLocation(id))
     {
         return(Json(id));
     }
     else
     {
         return(Json(false));
     }
 }