!7 concept ObjectType > Named { toString { ret "object type " + quote(name); } } concept DynamicThing > Named { ObjectType type; toString { ret (type == null ? "?" : type.name) + " " + quote(name); } } cmodule SmartHomeCRUD > DynVoiceMultiCRUD { *() { bootstrapConceptsFrom(#1027565); } L makeTables() { ret itemPlusList( new Table("Object Types", +ObjectType), map(list(ObjectType), type -> new Table(plural(type.name), type.name, DynamicThing, +type))); } transient NameBasedVoiceCRUD typesCRUD; start { typesCRUD = voiceCRUDs.get(idx(ObjectType)); } }