public static ContentEmbedded CreateContentEmbedded(this ContentSchema schema) { ContentEmbedded item = new ContentEmbedded(schema); ApplySchema(item, schema); return(item); }
public static ContentItem CreateContentItem(this ContentSchema schema) { ContentItem item = new ContentItem(schema); ApplySchema(item, schema); return(item); }
public ContentItem(Guid id, ContentSchema schema) : this(schema) { _id = id; }
public ContentItem(ContentSchema schema) { _schema = schema; _fields = new ContentFields(); }
public ContentEmbedded(ContentSchema schema) { _schema = schema; _fields = new ContentFields(); }