Example #1
0
 public Validator(IFlightStore store)
 {
     _store = store;
 }
Example #2
0
 public FlightsApi(IFlightStore store)
 {
     _store = store;
 }
Example #3
0
 public Scheduler(IFlightStore store)
 {
     _store = store;
 }
Example #4
0
 public ValidatorFunction(IFlightStore store)
 {
     _store = store;
 }