CS计算机代考程序代写 b’d3011c31c1b6dd7284fc0cc9d66c62e46f5302′

b’d3011c31c1b6dd7284fc0cc9d66c62e46f5302′

blob 341�package programmingexample2;

public class FlightSeat {
private String id;
private String section;

public FlightSeat(String id, String section) {
this.id = id;
this.section = section;
}

public String getId() {
return id;
}

public String getSection(){
return section;
}
}