internal static SystemIPLocationWrapper ConvertEntityToWrapper(SystemIPLocationEntity entity)
        {
            if (entity == null)
            {
                return(null);
            }

            if (entity.Id == 0)
            {
                return(null);
            }

            return(new SystemIPLocationWrapper(entity));
        }
 internal SystemIPLocationWrapper(SystemIPLocationEntity entityObj)
     : base(entityObj)
 {
 }