Example #1
0
 /// <summary>
 /// -------------------------------------------------------------------
 /// Author:         Josephine Gad
 /// Date Created:   15/Mar/2014
 /// Descrption:     Confirm hotel amount of Service Provider manifest
 /// -------------------------------------------------------------------
 /// </summary>
 public void PortAgentManifestConfirmHotelAmount(string sUser, string sRole, string sEmailTo,
                                                 string sEmailCC, int iCurrency, float fRateConfirmed, string sConfirmationNo,
                                                 string sHotelName, string sComment, string sConfirmedBy, string sRequestSource,
                                                 string strLogDescription, string strFunction, string strPageName,
                                                 DateTime DateGMT, DateTime CreatedDate, DataTable dt)
 {
     try
     {
         DAL.PortAgentManifestConfirmHotelAmount(sUser, sRole, sEmailTo,
                                                 sEmailCC, iCurrency, fRateConfirmed, sConfirmationNo,
                                                 sHotelName, sComment, sConfirmedBy, sRequestSource, strLogDescription,
                                                 strFunction, strPageName, DateGMT, CreatedDate, dt);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     finally
     {
         if (dt != null)
         {
             dt.Dispose();
         }
     }
 }