Esempio n. 1
0
 /// <summary>
 /// -------------------------------------------------------------------
 /// Author:         Josephine Gad
 /// Date Created:   13/Mar/2014
 /// Descrption:     Confirm vehicle manifest of Service Provider
 /// -------------------------------------------------------------------
 /// </summary>
 public void PortAgentManifestConfirmVehicle(string sUser, string sRole, string sEmailTo,
                                             string sEmailCC, string sTimeSpan, int iCurrency, float fRateConfirmed, string sConfirmationNo,
                                             string sVehicleName, string sDriverName, string sPlateNo, Int16 iVehicleTypeIDInt,
                                             string sComment, string sConfirmedBy, Int32 iContractIDInt, string strLogDescription, string strFunction, string strPageName,
                                             DateTime DateGMT, DateTime CreatedDate, DataTable dt, string sTransportationDetails)
 {
     try
     {
         DAL.PortAgentManifestConfirmVehicle(sUser, sRole, sEmailTo, sEmailCC, sTimeSpan, iCurrency,
                                             fRateConfirmed, sConfirmationNo, sVehicleName, sDriverName, sPlateNo, iVehicleTypeIDInt,
                                             sComment, sConfirmedBy, iContractIDInt, strLogDescription, strFunction, strPageName,
                                             DateGMT, CreatedDate, dt, sTransportationDetails);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     finally
     {
         if (dt != null)
         {
             dt.Dispose();
         }
     }
 }