コード例 #1
0
ファイル: ContentItem.cs プロジェクト: sjbisch/Orchard
 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>();
 }