public List<CabManagementt> GetCabDetail(Int32? CabId, bool? IsActive)
        {
            List<CabManagementt> lstCabDetail = null;
            try
            {
                using (CabManagementDLL cabmanagementDll = new CabManagementDLL())
                {
                    lstCabDetail = cabmanagementDll.GetCabDetail(CabId,IsActive);

                }
                return lstCabDetail;
            }
            catch (Exception e)
            {
                throw;
            }

            finally
            { lstCabDetail = null;
            }
        }