Exemplo n.º 1
0
 public void AddStructure(MathIdentifier structureId, ConversionRouter router, Type type)
 {
     if (!_table.ContainsId(structureId))
     {
         _table.Add(structureId, new StructureType(structureId, router, type));
     }
 }
Exemplo n.º 2
0
 public void AddProperty(IProperty property)
 {
     _properties.Add(property.TypeId, property);
     _table.Add(property);
 }
Exemplo n.º 3
0
 public void AddProperty(Property property)
 {
     _properties.Add(property.PropertyId, property);
     _table.Add(property);
 }