Esempio n. 1
0
 public void AddPlain(Plane plane)
 {
     if (Planes.Contains(plane))
     {
         throw new ApplicationException("Plane already exist");
     }
     Planes.Add(plane);
 }