/// <summary>
        /// Add Flights to the existing request
        /// </summary>
        /// <param name="RequestID">Existing request id</param>
        /// <param name="FlightDetail">object wrapped in trv_request class</param>
        /// <returns>true on success, false otherwise</returns>
        public DataSet GetFlightByRequestID(int RequestID)
        {
            DAL_TRV_Request TRequest = new DAL_TRV_Request();

            try { return(TRequest.Get_Fligts_By_RequestID(RequestID)); }
            catch { throw; }
        }