Esempio n. 1
0
        /// <summary>
        /// Add Pax to an exisiting request.
        /// </summary>
        /// <param name="RequestID">Exisitng request id</param>
        /// <param name="StaffID">Staffid to be added to the list</param>
        /// <param name="CreatedBy">Person name adding pax to the request</param>
        /// <returns>true on success, false otherwise</returns>
        public Boolean AddPaxToTravelRequest(int RequestID, int StaffID, int CreatedBy, int VoyageID, int EventID)
        {
            DAL_TRV_Request TRequest = new DAL_TRV_Request();

            try
            {
                return(TRequest.ADD_PAX_IN_TravelRequest(RequestID, StaffID, CreatedBy, VoyageID, EventID));
            }
            catch { throw; }
        }