public List<CabProperty> GetCabVerificationDetail(string CabId)
 {
     List<CabProperty> lstCabproperty = null;
       CabManagementDLL objCabManagementDLL=null;
       try
       {
       objCabManagementDLL = new CabManagementDLL();
       lstCabproperty = objCabManagementDLL.GetCabVerificationDetail(CabId);
       return lstCabproperty;
       }
       catch (Exception e)
       {
       throw;
       }
       finally
       {
       objCabManagementDLL = null;
       }
 }