private void ImportLocations(string[] fields)
        {
            var location = new LocationModel();

            location.Id                   = int.Parse(fields[1]);
            location.LocationName         = fields[2];
            location.LocationAbbreviation = fields[3];
            location.NumberOfTracks       = int.Parse(fields[4]);
            location.Order                = int.Parse(fields[5]);
            location.RouteId              = newRouteId;
            var newLocationId = LocationDataAccess.InsertLocationForRoute(location);

            LocationKeys.Add(location.Id, newLocationId);
        }