Esempio n. 1
0
 /// <summary>
 /// -------------------------------------------------------------------
 /// Author:         Josephine Gad
 /// Date Created:   11/Ap3/2014
 /// Descrption:     Add vehicle request of Service Provider from NonTurnPort Page
 /// -------------------------------------------------------------------
 /// </summary>
 public void PortAgentManifestConfirmVehicleAdd(string sUser, string sRole, string sEmailTo,
                                                string sEmailCC, int iCurrency, float fRateConfirmed, string sConfirmationNo,
                                                string sComment, string sConfirmedBy, string sRequestSource, Int32 iContractIDInt, Int16 iVehicleTypeId,
                                                string strLogDescription, string strFunction, string strPageName,
                                                DateTime DateGMT, DateTime CreatedDate, DataTable dt)
 {
     try
     {
         DAL.PortAgentManifestConfirmVehicleAdd(sUser, sRole, sEmailTo,
                                                sEmailCC, iCurrency, fRateConfirmed, sConfirmationNo,
                                                sComment, sConfirmedBy, sRequestSource, iContractIDInt, iVehicleTypeId,
                                                strLogDescription, strFunction, strPageName,
                                                DateGMT, CreatedDate, dt);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     finally
     {
         if (dt != null)
         {
             dt.Dispose();
         }
     }
 }