public void Execute()
        {
            DAOFactory factory   = DAOFactory.GetFactory(DAOFactory.Type.Postgres);
            IFlightDAO flightDao = factory.GetFlight();

            entList = flightDao.GetByDate(departure, arrival);
            //throw new System.NotImplementedException();
        }