Ejemplo n.º 1
0
 public clsSale(int refNumber, clsClient clientSeller, clsClient clientBuyer, clsEmployee agent, clsProperty property, DateTime date)
 {
     this.refNumber = refNumber;
     ClientSeller   = clientSeller;
     ClientBuyer    = clientBuyer;
     Agent          = agent;
     Property       = property;
     this.date      = date;
 }
Ejemplo n.º 2
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;
 }
Ejemplo n.º 3
0
 public clsProperty()
 {
     this.refNumber   = 0;
     this.yearBuilt   = 0;
     this.numRooms    = 0;
     this.title       = "Not Defined";
     this.address     = "Not Defined";
     this.description = "Not Defined";
     this.type        = "Not Defined";
     this.area        = 0;
     this.price       = 0;
     this.status      = false;
     this.agent       = null;
     this.Client      = null;
 }
Ejemplo n.º 4
0
 public clsClient(int refNumber, clsEmployee agent, decimal credit)
 {
     this.RefNumber = refNumber;
     this.Agent     = agent;
     this.Credit    = credit;
 }