예제 #1
0
 public ContentItem() {
     _behavior = new ClayBehaviorCollection(new[] { new ContentItemBehavior(this) });
     _parts = new List<ContentPart>();
 }
예제 #2
0
 public ContentItem()
 {
     _behavior = new ClayBehaviorCollection(new[] { new ContentItemBehavior(this) });
     _parts    = new List <ContentPart>();
 }
예제 #3
0
 public ContentPart() {
     _behavior = new ClayBehaviorCollection(new[] { new ContentPartBehavior(this) });
     _fields = new List<ContentField>();
 }