public void txUpdate(Flight flight) {
   flightDao.save(flight);
 }
 public void txInsert(Flight flight) {
   flightDao.save(flight);
 }