예제 #1
0
 public IList <Flight> GetFlightsByOriginCountry(int countryCode)
 {
     return(_flightDAO.GetFlightsByOriginCountry(countryCode));
 }
 public void GetFlightsByOriginCountryNotFoundException()
 {
     Assert.AreEqual(null, flightDAO.GetFlightsByOriginCountry(1));
 }