Пример #1
0
        /// <summary>
        /// Get crew list by event id
        /// </summary>
        /// <param name="VoyageID">voyage id for which crew list is desired</param>
        /// <returns>Dataset containing the list of crew</returns>
        public DataSet GetCrewListByVoyageID(int EventID)
        {
            DAL_TRV_Request TRequest = new DAL_TRV_Request();

            try { return(TRequest.Get_CrewList_By_EventID(EventID)); }
            catch { throw; }
            finally { TRequest = null; }
        }