public bool VerifyPropertyPL()
        {
            Property verifyProperty   = new Property();
            bool     propertyVerified = false;

            if (verifyProperty != null)
            {
                verifyProperty.PropertyId = int.Parse(txtPropertyId.Text);

                propertyVerified = propertyBLL.VerifyPropertyBL(verifyProperty);
            }
            return(propertyVerified);
        }