/// <summary>
 /// function To Get The Inspection Type.
 /// </summary>
 /// <param name="portStorageVehiclesId"></param>
 /// <returns>List</returns>
 /// <createdBy></createdBy>
 /// <createdOn>May-12,2016</createdOn>
 public List <string> InspectionTypeOnly()
 {
     try
     {
         CommonDAL.logger.LogInfo(typeof(string), string.Format(CultureInfo.InvariantCulture, "Called {2} function ::{0} {1}.", DateTime.Now.ToShortDateString(), DateTime.Now.ToShortTimeString(), MethodBase.GetCurrentMethod().Name));
         PortStorageDamageDetailsDAL objPortStorageDamageDetailsDAL = new PortStorageDamageDetailsDAL();
         return(objPortStorageDamageDetailsDAL.InspectionTypeOnly());
     }
     catch (Exception)
     {
         throw;
     }
     finally
     {
         CommonDAL.logger.LogInfo(typeof(string), string.Format(CultureInfo.InvariantCulture, "End {2} function ::{0} {1}.", DateTime.Now.ToShortDateString(), DateTime.Now.ToShortTimeString(), MethodBase.GetCurrentMethod().Name));
     }
 }