예제 #1
0
 public clsPhoto(int refNumber, clsProperty property, string description, string path)
 {
     this.refNumber   = refNumber;
     this.property    = property;
     this.description = description;
     this.path        = path;
 }
예제 #2
0
 public clsPhoto()
 {
     this.refNumber   = 0;
     this.property    = null;
     this.description = "TBD";
     this.path        = "TBD";
 }
예제 #3
0
파일: clsSale.cs 프로젝트: DiogoTM/RemaxApp
 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;
 }