public static LocationType ToLocationType(this LocationTypeV1DTO item)
        {
            if (item == null)
            {
                throw new ArgumentException(nameof(item));
            }

            LocationType locationType = new LocationType();

            locationType.CopyFromLocationTypeV1DTO(item);
            return(locationType);
        }