public PmsResponseDto DeleteFloor(int propertyFloorId)
        {
            if (propertyFloorId <= 0)
            {
                throw new PmsException("Floor is not valid. Hence Floor can not be deleted.");
            }

            var response = new PmsResponseDto();

            if (_iPmsLogic.DeleteFloor(propertyFloorId))
            {
                response.ResponseStatus    = PmsApiStatus.Success.ToString();
                response.StatusDescription = "Record deleted successfully.";
            }
            else
            {
                response.ResponseStatus    = PmsApiStatus.Failure.ToString();
                response.StatusDescription = "Operation failed.Please contact administrator.";
            }
            return(response);
        }