public static iLogicForm Get(UiStorage storage, string formName, InventorParameters allowedParameters)
            {
                FormSpecification formSpec = storage.LoadFormSpecification(formName);
                var extractor = new FormExtractor(formSpec, allowedParameters);

                return(extractor.Run());
            }
 private iLogicForm GetGroupsAndParameters(string formName)
 {
     return(FormExtractor.Get(_storage, formName, _allowedParameters));
 }