コード例 #1
0
ファイル: Folder.cs プロジェクト: dbremner/nupattern
 /// <summary>
 /// Initializes a new instance of the <see cref="Folder"/> class.
 /// </summary>
 public Folder(IAbstractElement target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <IFolder>();
 }
コード例 #2
0
ファイル: DataContract.cs プロジェクト: dbremner/nupattern
 /// <summary>
 /// Initializes a new instance of the <see cref="DataContract"/> class.
 /// </summary>
 public DataContract(IAbstractElement target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <IDataContract>();
 }