public List<CabProperty> GetCabPropertyList(Int32? propertyId, bool? IsActive)
 {
     List<CabProperty> lstproperty = null;
     try
     {
         using (PropertyManagementDLL propertyManagementDLL = new PropertyManagementDLL())
         {
             lstproperty = propertyManagementDLL.GetCabProperty(propertyId, IsActive);
         }
         return lstproperty;
     }
     catch
     {
         throw;
     }
 }
        /// <summary>
        /// To Get Cab Property list
        /// </summary>
        /// <returns></returns>
        public List<CabProperty> GetCabproperty(int? PropertyId, bool? IsActive)
        {
            List<CabProperty> lstgetcabproperty = null;

            try
            {
                using (PropertyManagementDLL cabpropertydll = new PropertyManagementDLL())
                {
                    lstgetcabproperty = cabpropertydll.GetCabProperty(PropertyId,IsActive);
                }

                return lstgetcabproperty;
            }

            catch
            { throw; }
        }