Пример #1
0
 /// <summary>
 /// -------------------------------------------------------------------
 /// Author:         Josephine Gad
 /// Date Created:   10/Mar/2014
 /// Descrption:     Confirm hotel manifest of Service Provider
 /// -------------------------------------------------------------------
 /// </summary>
 public void PortAgentManifestConfirmHotel(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.PortAgentManifestConfirmHotel(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();
         }
     }
 }