コード例 #1
0
 public FloorDTO(int id, string nomeFloor, string descrizione, BuildingDTO building)
 {
     this.id          = id;
     this.nomeFloor   = nomeFloor;
     this.descrizione = descrizione;
     this.building    = building;
 }
コード例 #2
0
 public ThingDTO(int id, String num_Uscite, double prezzo, CustomerDTO customerDTO, BuildingDTO buildingDTO)
 {
     this.id        = id;
     this.numUscite = num_Uscite;
     this.prezzo    = prezzo;
     this.customer  = customerDTO;
     this.building  = buildingDTO;
 }