Example #1
0
 public SpaceChild(BallastSpace ballastSpace, Space space)
 {
     Parent = ballastSpace;
     Space = space;
 }
Example #2
0
 public void AddSpace(Space space)
 {
     _spaces.Add(space);
     NotifyPropertyChanged("Spaces");
 }
Example #3
0
 public void RemoveSpace(Space space)
 {
     _spaces.Remove(space);
     NotifyPropertyChanged("Spaces");
 }
 public SpaceChild(BallastSpace ballastSpace, Space space)
 {
     Parent = ballastSpace;
     Space  = space;
 }