Inheritance diagram for HouseOver.THARM.Lot:


Public Member Functions | |
| Lot () | |
| Constructs a new lot.   | |
| Lot (int id) | |
| Constructs a new lot with the specified id.   | |
| Lot (int id, int postalCode, int area, TerrainType type) | |
| Constructs a new lot with the specified parameters.   | |
| Lot () | |
| Constructs a new lot.   | |
| Lot (int id) | |
| Constructs a new lot with the specified id.   | |
| Lot (int id, int postalCode, int area, TerrainType type) | |
| Constructs a new lot with the specified parameters.   | |
Properties | |
| [SaleCriteria("Terrain Type")]  TerrainType  | Type [get, set] | 
| Gets or sets the type of terrain.   | |
Private Attributes | |
| TerrainType | type | 
| The lot's terrain type.   | |
Definition at line 34 of file Lot.cs.
| HouseOver.THARM.Lot.Lot | ( | ) | 
Constructs a new lot.
Definition at line 42 of file Lot.cs.
00042 : base(UniquelyIdentifiable.NextID) 00043 { 00044 }
| HouseOver.THARM.Lot.Lot | ( | int | id | ) | 
Constructs a new lot with the specified id.
| id | The UniquelyIdentifiable ID to generate the ID from | 
Definition at line 50 of file Lot.cs.
| HouseOver.THARM.Lot.Lot | ( | int | id, | |
| int | postalCode, | |||
| int | area, | |||
| TerrainType | type | |||
| ) | 
Constructs a new lot with the specified parameters.
| id | The id number. | |
| postalCode | The postalcode. | |
| area | The lot area. | |
| type | The type of terrain of a lot. | 
Definition at line 61 of file Lot.cs.
00061 : base(id, postalCode, area) 00062 { 00063 this.type = type; 00064 }
| HouseOver.THARM.Lot.Lot | ( | ) | 
Constructs a new lot.
Definition at line 42 of file Lot.cs.
00042 : base(UniquelyIdentifiable.NextID) 00043 { 00044 }
| HouseOver.THARM.Lot.Lot | ( | int | id | ) | 
Constructs a new lot with the specified id.
| id | The UniquelyIdentifiable ID to generate the ID from | 
Definition at line 50 of file Lot.cs.
| HouseOver.THARM.Lot.Lot | ( | int | id, | |
| int | postalCode, | |||
| int | area, | |||
| TerrainType | type | |||
| ) | 
Constructs a new lot with the specified parameters.
| id | The id number. | |
| postalCode | The postalcode. | |
| area | The lot area. | |
| type | The type of terrain of a lot. | 
Definition at line 61 of file Lot.cs.
00061 : base(id, postalCode, area) 00062 { 00063 this.type = type; 00064 }
TerrainType HouseOver::THARM.Lot::type [private]           | 
        
[SaleCriteria("Terrain Type")] TerrainType HouseOver.THARM.Lot.Type [get, set]           | 
        
 1.5.1-p1