Esempio n. 1
0
        ///<summary>
        /// -------------------------------------------------------------------
        /// Author:         Michael Evangelista
        /// Date Created:   02/Oct/2015
        /// Description:    Get Service Provider/Hotel Details for Hotel Request
        /// -------------------------------------------------------------------
        /// </summary>

        public void PortAgentGetConfirmHotelToAdd(DataTable dt, string UserId, string sRole, int PortId, int VendorId, string VendorType, string strLogDescription, string strFunction, DateTime DateGMT, DateTime CreatedDate)
        {
            try
            {
                DAL.PortAgentGetConfirmHotelToAdd(dt, UserId, sRole, PortId, VendorId, VendorType, strLogDescription, strFunction, DateGMT, CreatedDate);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (dt != null)
                {
                    dt.Dispose();
                }
            }
        }