/// <summary>
 /// Creates a new instance of the <see cref="PatternToolkitLibrary"/> class.
 /// </summary>
 public PatternToolkitLibrary(Runtime.IProduct target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <IPatternToolkitLibrary>();
     OnCreated();
 }
示例#2
0
 /// <summary>
 /// Creates a new instance of the <see cref="Solution"/> class.
 /// </summary>
 public Solution(Runtime.IProduct target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <ISolution>();
     OnCreated();
 }
示例#3
0
 /// <summary>
 /// Creates a new instance of the <see cref="PatternToolkitHandsOnLabs"/> class.
 /// </summary>
 public PatternToolkitHandsOnLabs(Runtime.IProduct target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <IPatternToolkitHandsOnLabs>();
     OnCreated();
 }
 /// <summary>
 /// Creates a new instance of the <see cref="AutomationLibrary"/> class.
 /// </summary>
 public AutomationLibrary(Runtime.IProduct target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <IAutomationLibrary>();
     OnCreated();
 }