1 namespace TestSiteARSupport
.Model
3 using Castle
.ActiveRecord
;
6 public class Customer
: ActiveRecordBase
<Customer
>
10 private Address homeAddress
;
27 public Address HomeAddress
29 get { return homeAddress; }
30 set { homeAddress = value; }
36 private string street
;
41 get { return street; }
42 set { street = value; }