Dosya CBB
Dosya CBB
public Koltuk(String renk, int koltukNo, boolean dolu, int fiyat, String
malzeme) {
this.renk = renk;
this.koltukNo = koltukNo;
this.dolu = dolu;
this.fiyat = fiyat;
this.malzeme = malzeme;
}
public Koltuk() {
this.renk = "pembe";
this.koltukNo = 4;
this.dolu = false;
this.fiyat = 0;
this.malzeme = "kumas";
}