//Delete האם יש למחוק קודם מהטבלאות שהוא נמצא בהן בקשרי גומלין
        public static void DeleteLastLocation(LastLocation1 lastLocation)
        {
            LastLocation newlastLocation = LastLocationConvertor.ConvertToDL(lastLocation);

            LastLocationDL.DeleteLastLocation(newlastLocation);
        }
 //Update
 public static void UpdateLastLocation(LastLocation1 l)
 {
     LastLocationDL.UpdateLastLocation(LastLocationConvertor.ConvertToDL(l));
 }