/// <summary>
        /// Returns the Ifc entity for a given Geometry Label
        /// </summary>
        /// <param name="geometryLabel"></param>
        /// <returns></returns>
        public IPersistIfcEntity GetFromGeometryLabel(int geometryLabel)
        {
            XbimGeometryHandle filledGeomData = cache.GetGeometryHandle(geometryLabel);

            return(cache.GetInstance(filledGeomData.ProductLabel, true, true));
        }