/// <summary>
 /// Creates a new instance of the <see cref="Design"/> class.
 /// </summary>
 public Design(Runtime.IView target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <IDesign>();
     OnCreated();
 }
 /// <summary>
 /// Creates a new instance of the <see cref="Development"/> class.
 /// </summary>
 public Development(Runtime.IView target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <IDevelopment>();
     OnCreated();
 }
 /// <summary>
 /// Creates a new instance of the <see cref="DefaultView"/> class.
 /// </summary>
 public DefaultView(Runtime.IView target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <IDefaultView>();
     OnCreated();
 }