public FlightsController(IMockFlights mockDb)
 {
     this.db = mockDb;
 }
 public FlightsController()
 {
     this.db = new IDataFlights();
 }