I have to create an itinerary object which is essentially made of other components.
These components need to be added in a particular order. I need to make sure when things are added out of order, an exception/error needs to be thrown.
Quick walkthrough:
Itinerary Build-itinerary():
- AddSegment()
- AddBaggagePolicy()
- AddMisc()
Segment AddSegment(...)
- add departure airport
- add arrival airport
- add departure time
- add arrival time
- add duration (total duration)
- add airline
where airport and airline are object types.
Once segments are done, I need to consolidate the segments to yield starting departure to final arrival destination (since there can be multiple hop points from one point to other).
What kind of a pattern can I refer to building this itinerary ?