Esempio n. 1
0
        /// <summary>
        /// Cancels the travel request
        /// </summary>
        /// <param name="RequestID">Requestid to be cancelled</param>
        /// <returns>true on success, false otherwise</returns>
        public Boolean CancelRequest(int RequestID, int Deleted_By)
        {
            DAL_TRV_Request TRequest = new DAL_TRV_Request();

            try { return(TRequest.Cancel_TravelRequest(RequestID, Deleted_By)); }
            catch { throw; }
            finally { TRequest = null; }
        }