Beispiel #1
0
 public TerritoryAPI(Territory ter)
 {
     _owner         = new HouseAPI(ter._owner);
     _territoryType = ter._territoryType;
 }
Beispiel #2
0
 public Territory(House owner, TerritoryTypeEnum territoryType)
 {
     _owner         = owner;
     _territoryType = territoryType;
 }
Beispiel #3
0
 public TerritoryAPI(HouseAPI owner, TerritoryTypeEnum territoryType)
 {
     _owner         = owner;
     _territoryType = territoryType;
 }
 public TerritoryType(TerritoryTypeEnum type)
 {
     _name = type.ToString();
 }