• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Price of Flight

 
Ranch Hand
Posts: 317
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is it a reasonable assumption to make that the price of a "flight"(From Point A to Point C) is the sum total of all its parts/segments/legs (priceof A-->B + priceof B-->C)?
Will this hold true in case of connecting flights too(different flight #s)?

any thoughts?

Parag
 
Ranch Hand
Posts: 86
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Parag,

According to my assignment we could make that assumption. In real life this probably is not very likely pricing model, the total price is something else than the price of segments (if reserved as invidual flights). But if the pricing model is simple and requirements describe price per destination and nothing else, we should stick to that.

Tomi
 
Parag Doshi
Ranch Hand
Posts: 317
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Tomi Tuomainen:
Parag,

According to my assignment we could make that assumption. In real life this probably is not very likely pricing model, the total price is something else than the price of segments (if reserved as invidual flights). But if the pricing model is simple and requirements describe price per destination and nothing else, we should stick to that.

Tomi



Tomi,
Yeah..seemed that way too..now am throwing another assumption your way on similar lines...tell me what u feel abt it..I am assuming that the definition of a segment entails a single flight from Point A to Point B as long as its the same flight #. this is something which was discussed and seems correct enough. So, I guess if a "flight" has 2 segments, they would possibly be 2 different flight #s (hence, they are 2 segments and not 1). for example,
a "flight" from Point A to Point C, which stops at B.
So,
A --> B [one flight #] //Segment 1
B --> C [a different flight #] //Segment 2

Lets assume the customer adds these 2 segments to his one way itinerary. If we go by the 'Change Itinerary' use case, the custmer is allowed to select the segment to change and the system lets him do that.
here are 2 possible assumptions:

1. The entire itinerary is discarded and the customer starts all over again.
2. The selected segment is discarded and the customer selects another segment.

In case 1, its simple..we dont have to worry abt dependency of the 2nd segment to the 1st etc..in the 2nd there is a dependency as if the customer selects the 1st segment and changes it to go from A-->D instead of A-->B, we definitely make the 2nd segment invalid as the customer might no longer end up at B !

Now, should we go by 1 and make the assumption accordingly (makes life simple) or should we go by 2 and make provisions to make the dependencies stick together so that the integrity is maintained?

ur thoughts?

Parag
 
Tomi Tuomainen
Ranch Hand
Posts: 86
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm thinking we're about to break the rules of this forum (again) .

I would select assumption 2 because that's what corresponds to my assignment use case story. But I wouldn't worry about any "flight integrity" if such requirement is not described. And we cannot know if customer wants to fly from A to B, take a bus from B to C, fly from C to D and walk home from D to A . So my opinion is that any kind of flight combination should be accepted.

Tomi
 
I'm not sure if I approve of this interruption. But this tiny ad checks out:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic