ICarBuildContext ICarBuildContext.WithPassangerSeat(SeatBase seat)
 {
     PassangerSeat = seat;
     return this;
 }
 ICarBuildContext ICarBuildContext.WithDriverSeat(SeatBase seat)
 {
     DriveSeat = seat;
     return this;
 }