Inheritance diagram for HouseOver.THARM.Buildings.Apartment:
Public Member Functions | |
Apartment () | |
Constructs a new apartment object. | |
Apartment (int id) | |
Constructs a new apartment object with the specified id. | |
Apartment (int id, int postalCode, int area, int buildingYear, int levels, int floor) | |
Constructs a new apartment object with the specified parameters. | |
Apartment () | |
Constructs a new apartment object. | |
Apartment (int id) | |
Constructs a new apartment object with the specified id. | |
Apartment (int id, int postalCode, int area, int buildingYear, int levels, int floor) | |
Constructs a new apartment object with the specified parameters. | |
Properties | |
[SaleCriteria] int | Floor [get, set] |
Gets or sets the number of floors. | |
Private Attributes | |
int | floor |
The floor the apartment can be found on. |
Definition at line 13 of file Apartment.cs.
HouseOver.THARM.Buildings.Apartment.Apartment | ( | ) |
Constructs a new apartment object.
Definition at line 21 of file Apartment.cs.
00021 : base(UniquelyIdentifiable.NextID) { }
HouseOver.THARM.Buildings.Apartment.Apartment | ( | int | id | ) |
Constructs a new apartment object with the specified id.
id |
Definition at line 27 of file Apartment.cs.
HouseOver.THARM.Buildings.Apartment.Apartment | ( | int | id, | |
int | postalCode, | |||
int | area, | |||
int | buildingYear, | |||
int | levels, | |||
int | floor | |||
) |
Constructs a new apartment object with the specified parameters.
id | The id. | |
postalCode | The postalcode. | |
area | The area of the apartment. | |
buildingYear | The building year. | |
levels | Number of levels. | |
floor | Number of floors. |
Definition at line 38 of file Apartment.cs.
00039 : base 00040 (id, postalCode, area, buildingYear, levels) 00041 { 00042 this.floor = floor; 00043 }
HouseOver.THARM.Buildings.Apartment.Apartment | ( | ) |
Constructs a new apartment object.
Definition at line 21 of file Apartment.cs.
00021 : base(UniquelyIdentifiable.NextID) { }
HouseOver.THARM.Buildings.Apartment.Apartment | ( | int | id | ) |
Constructs a new apartment object with the specified id.
id |
Definition at line 27 of file Apartment.cs.
HouseOver.THARM.Buildings.Apartment.Apartment | ( | int | id, | |
int | postalCode, | |||
int | area, | |||
int | buildingYear, | |||
int | levels, | |||
int | floor | |||
) |
Constructs a new apartment object with the specified parameters.
id | The id. | |
postalCode | The postalcode. | |
area | The area of the apartment. | |
buildingYear | The building year. | |
levels | Number of levels. | |
floor | Number of floors. |
Definition at line 38 of file Apartment.cs.
00039 : base 00040 (id, postalCode, area, buildingYear, levels) 00041 { 00042 this.floor = floor; 00043 }
int HouseOver::THARM::Buildings.Apartment::floor [private] |
[SaleCriteria] int HouseOver.THARM.Buildings.Apartment.Floor [get, set, protected] |