예제 #1
0
 public void Update(Flight update)
 {
     try
     {
         flightDAO.Update(update);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
예제 #2
0
 public void UpdateFlight(Flight flight)
 {
     flightDao.Update(flight);
 }