public IElementSchema CreateElementSchema(string schemaId) { Guard.NotNullOrEmpty(() => schemaId, schemaId); var schema = new ElementSchema(schemaId); components.Add(schema); return schema; }
public IElementSchema CreateItemSchema(string schemaId) { return (itemSchema = new ElementSchema(schemaId)); }