/// <summary>
 /// To Get Cab Type list by their status
 /// </summary>
 /// <param name="Cabname"></param>
 /// <param name="IsActive"></param>
 /// <returns></returns>
 public List<CabType> GetCABTYPE( bool? IsActive)
 {
     List<CabType > lstcabtype = null;
     try
     {
         using (CabManagementDLL cabtypedll = new CabManagementDLL())
         {
             lstcabtype = cabtypedll.GetCabTypeList(IsActive);
         }
         return lstcabtype;
     }
     catch
     {
         throw;
     }
 }