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(); }
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(); }