public void AddForestObject(IForestObject forestObject)
 {
     ForestObjects.Add(forestObject);
 }
 public void Remove(IForestObject forestObject)
 {
     ForestObjects.Remove(forestObject);
 }