예제 #1
0
        /// <summary>
        /// Remove Pax from an exisiting request.
        /// </summary>
        /// <param name="RequestID">Exisitng request id</param>
        /// <param name="StaffID">Staffid to be added to the list</param>
        /// <param name="RemovedBy">Person name adding pax to the request</param>
        /// <returns>true on success, false otherwise</returns>
        public Boolean RemovePaxFromTravelRequest(int RequestPaxId, int Deleted_By)
        {
            DAL_TRV_Request TRequest = new DAL_TRV_Request();

            try { return(TRequest.Remove_PAX_From_TravelRequest(RequestPaxId, Deleted_By)); }
            catch { throw; }
        }