private void saveDataToExtensibleStorage(ComparisonCoupleElement openningModel, ElementId openningId)
        {
            Element openning = _doc.GetElement(openningId);

            if (openning != null)
            {
                OpenningProcessExtensibleStorage.SetValueToExtensibleStorage(openningModel, openning, _subject);
            }
        }
예제 #2
0
        public void saveDataToExtensibleStorage(Document document, ComparisonCoupleElement openningModel, ElementId openningId, string subject)
        {
            Element openning = document.GetElement(openningId);

            if (openning != null)
            {
                OpenningProcessExtensibleStorage.SetValueToExtensibleStorage(openningModel, openning, subject);
            }
        }