Esempio n. 1
0
 public SeatsBuilder()
 {
     this.total = 0;
     this.brand = SeatsBrand.None;
 }
Esempio n. 2
0
 public SeatsBuilder WithSeatsBrand(SeatsBrand brand)
 {
     this.brand = brand;
     return(this);
 }
 public Seat(int total, SeatsBrand brand)
 {
     this.TotalSeats = total;
     this.Brand      = brand;
 }