Example #1
0
        public void findFlights(int index, String version)
        {
            if (index < 0)
            {
                return;
            }
            else
            {
                FlightRequest temp = Requests.ElementAt(index);
                flightsFound.Clear();

                foreach (Flight fl in Shared.Flight)
                {
                    if (temp.Date == fl.DateAndTime.Date)
                    {
                        if (temp.DestAirport == fl.DestAirport)
                        {
                            if (temp.SourceAirport == fl.SourceAirport)
                            {
                                flightsFound.Add(fl);
                            }
                        }
                    }
                }
                Serialize(version);
            }
        }
Example #2
0
        /// <summary>
        /// The requests should include all possible airport combinations, on a variety of dates.
        /// </summary>
        public void CreateFlightRequest()
        {
            Requests.Clear();
            int count = 0;

            while (count < 20)
            {
                foreach (Airport airp in Shared.Airports())
                {
                    //Loop through each airportin the Airports list and create an airport object which will hold the destination airport.
                    foreach (Airport arp2 in Shared.Airports())
                    {
                        string test1 = airp.Location; //Get the source airport name
                        string test2 = arp2.Location; //Get the Destination airport name

                        if (test1 != test2)           //do not create flight request for same airport
                        {
                            if (count == 20)
                            {
                                break;
                            }
                            //Get the price for the flight using the source(test1), destination(test2) airports and the time of day(tme)
                            FlightRequest temp = new FlightRequest(test1, test2, GetRandDate());
                            Requests.Add(temp);
                            count++;
                        }
                    }
                }
            }
        }
Example #3
0
 public MatchFlightsFactory(FlightRequest chosen)
 {
     this.chosen = chosen;
     this.Day    = chosen.Date;
     this.Orig   = chosen.SourceAirport;
     this.Dest   = chosen.DestAirport;
     findConnections();
 }
        public FlightRequest getRequest(int index)
        {
            
                FlightRequest temp = Requests.ElementAt(index);
                return temp;
           

        }