/// <summary>Initializes a new instance of the <see cref="DrawingConnection"/> class.
 /// Initializes a new instance of the class.</summary>
 /// <param name="model">Model connection.</param>
 public DrawingConnection(ModelConnection model)
 {
     this.model = model;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Connection"/> class.
 /// Initializes a new instance of the class.
 /// </summary>
 public Connection()
 {
     this.model   = new ModelConnection();
     this.drawing = new DrawingConnection(this.model);
 }