public void GetFlightsByLandingDate() { 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.GetFlightsByLandingDate(new DateTime((DateTime.Now.Year + 2), 12, 7))[0]); }
public IList <Flight> GetFlightsByLandingDate(DateTime landingDate) { return(_flightDAO.GetFlightsByLandingDate(landingDate)); }