Ejemplo n.º 1
0
 public Area(string name)
 {
     this.name  = name;
     Area1      = new AreaCollection(this);
     WorkCentre = new WorkCentreCollection(this);
 }
Ejemplo n.º 2
0
 public Site(string name)
 {
     this.name = name;
     Area      = new AreaCollection(this);
 }