Exemplo n.º 1
0
 public override void addTerritory(Territory t)
 {
     if(t != null)
     {
         t.Region = this;
         m_Territories.Add(t);
         this.markDirty();
     }
     else
     {
         throw new ApplicationException();
     }
 }
Exemplo n.º 2
0
 public abstract void addTerritory(Territory t);