On the line: bool travel = fill.travel.Value; I am getting the following error:
bool travel = fill.travel.Value;
Nullable object must have a value
a
You will get a InvalidOperationException if you access the Nullable.Value property when the HasValue property is false.
InvalidOperationException