Exemplo n.º 1
0
 public Construction(string id, string projectName, string description, Address address, DateTime startProject)
 {
     this.id            = id;
     this.projectName   = projectName;
     this.description   = description;
     this.address       = address;
     this.startProject  = startProject;
     this.finishProject = new DateTime();
     this.listMaterial  = new ListMaterial();
     this.listMoney     = new ListMoneyReceived();
 }
Exemplo n.º 2
0
 public Construction()
 {
     this.id            = "";
     this.projectName   = "";
     this.description   = "";
     this.address       = new Address();
     this.startProject  = new DateTime();
     this.finishProject = new DateTime();
     this.listMaterial  = new ListMaterial();
     this.listMoney     = new ListMoneyReceived();
 }