public void GetFlightsByDestinationCountry()
        {
            countryDAO.Add(new Country("Israel"));
            Country israel = countryDAO.GetCountryByName("Israel");

            airlineDAO.Add(new AirlineCompany("ELAL", "USERNAME", "PASSWORD", israel.ID));
            AirlineCompany elal = airlineDAO.GetAirlineByName("ELAL");

            flightDAO.Add(new Flight(elal.ID, israel.ID, israel.ID, new DateTime((DateTime.Now.Year + 2), 12, 5, 14, 00, 00), new DateTime((DateTime.Now.Year + 2), 12, 7, 14, 00, 00), 50, FlightStatus.NotDeparted));
            Flight flightTest = flightDAO.GetAll()[0];

            Assert.AreEqual(flightTest, flightDAO.GetFlightsByDestinationCountry(israel.ID)[0]);
        }
예제 #2
0
 public IList <Flight> GetFlightsByDestinationCountry(int countryCode)
 {
     return(_flightDAO.GetFlightsByDestinationCountry(countryCode));
 }