Exemplo n.º 1
0
 /// <summary>
 /// Copy Constructor.
 /// </summary>
 public GXDeviceModel(GXDeviceModel item)
 {
     Versions = new GXDeviceVersionCollection(this);
     Name = item.Name;
     Description = item.Description;
     foreach (GXDeviceVersion it in item.Versions)
     {
         Versions.Add(new GXDeviceVersion(it));
     }
 }               
Exemplo n.º 2
0
 /// <summary>
 /// Constructor.
 /// </summary>
 public GXDeviceModel()
 {
     Versions = new GXDeviceVersionCollection(this);
     Description = null;
 }