Inheritance diagram for HouseOver.THARM.Customer:
Public Member Functions | |
Customer (int postalCode, string name) | |
Constructs a new customer object. | |
Customer (int postalCode, string name) | |
Constructs a new customer object. | |
Properties | |
int | Postalcode [get, set] |
Gets or sets the postalcode. | |
string | Name [get, set] |
Gets or sets the name. | |
Private Attributes | |
int | postalcode |
string | name |
Definition at line 13 of file Customer.cs.
HouseOver.THARM.Customer.Customer | ( | int | postalCode, | |
string | name | |||
) |
Constructs a new customer object.
postalCode | The current postalcode the customer lives in. | |
name | The name of the customer. |
Definition at line 23 of file Customer.cs.
00023 : base(UniquelyIdentifiable.NextID) 00024 { 00025 this.postalcode = postalCode; 00026 this.name = name; 00027 }
HouseOver.THARM.Customer.Customer | ( | int | postalCode, | |
string | name | |||
) |
Constructs a new customer object.
postalCode | The current postalcode the customer lives in. | |
name | The name of the customer. |
Definition at line 23 of file Customer.cs.
00023 : base(UniquelyIdentifiable.NextID) 00024 { 00025 this.postalcode = postalCode; 00026 this.name = name; 00027 }
int HouseOver::THARM.Customer::postalcode [private] |
Definition at line 15 of file Customer.cs.
string HouseOver::THARM.Customer::name [private] |
Definition at line 16 of file Customer.cs.
int HouseOver::THARM.Customer::Postalcode [get, set] |
Gets or sets the postalcode.
Definition at line 32 of file Customer.cs.
Referenced by HouseOver.THARM.RealtyManager.ShowCustomer().
string HouseOver::THARM.Customer::Name [get, set] |
Gets or sets the name.
Definition at line 36 of file Customer.cs.
Referenced by HouseOver.THARM.RealtyManager.SetComparableCheck(), HouseOver.THARM.RealtyManager.SetEnumCheck(), HouseOver.THARM.RealtyManager.ShowAddProfile(), HouseOver.THARM.RealtyManager.ShowAddSale(), HouseOver.THARM.RealtyManager.ShowCustomer(), HouseOver.THARM.RealtyManager.ShowProfile(), HouseOver.THARM.RealtyManager.ShowProfileDetails(), HouseOver.THARM.RealtyManager.ShowSale(), and HouseOver.THARM.RealtyManager.ShowSaleDetails().