示例#1
0
 public clsProperty(int refNumber, int yearBuilt, int numRooms, string title, string address, string description, string type, float area, decimal price, bool status, clsEmployee agent, clsClient client)
 {
     this.refNumber   = refNumber;
     this.yearBuilt   = yearBuilt;
     this.numRooms    = numRooms;
     this.title       = title;
     this.address     = address;
     this.description = description;
     this.type        = type;
     this.area        = area;
     this.price       = price;
     this.status      = status;
     this.agent       = agent;
     this.Client      = client;
 }