Exemplo n.º 1
0
        private bool ClientFieldsOk()
        {
            bool idOk      = InputValidations.ValidateID(idText.Text, idMsg);
            bool telOk     = InputValidations.ValidatePhoneNumber(telNumberText.Text, telNumberMsg);
            bool addressOk = InputValidations.ValidateIfEmpty(addressText, addressMsg);

            return(idOk && telOk && addressOk);
        }
Exemplo n.º 2
0
        private bool CommonUserFieldsOK()
        {
            bool userNameOk = IsUserNameValid();
            bool nameOk     = InputValidations.ValidateIfEmpty(nameTxt, nameMsg);
            bool surnameOk  = InputValidations.ValidateIfEmpty(surnameText, surnameMsg);
            bool passwordOk = InputValidations.ValidateIfEmpty(passwordText, passwordMsg);

            return(userNameOk && nameOk && surnameOk && passwordOk);
        }
Exemplo n.º 3
0
        private bool DataOk()
        {
            bool  nameOk       = InputValidations.ValidateIfEmpty(nameText, msgName);
            float heightSums   = (float)(spinnerHeightAboveFloor.Value + spinnerHeight.Value);
            bool  heightSumsOk = InputValidations.ValidateStrictMinor(heightSums, Constants.WALL_HEIGHT, msgHeight,
                                                                      "height plus elevation can't be higher than wall: " + Constants.WALL_HEIGHT + " m");
            bool allOk = nameOk && heightSumsOk;

            return(allOk);
        }
        private void LogInButton_Click(object sender, EventArgs e)
        {
            bool usernameNotEmpty = InputValidations.ValidateIfEmpty(UsernameText, UserNameMsg);
            bool passwordNotEmpty = InputValidations.ValidateIfEmpty(PasswordText, PasswordMsg);

            if (usernameNotEmpty && passwordNotEmpty)
            {
                TryToLogIn();
            }
        }
        private void createButton_Click(object sender, EventArgs e)
        {
            if (InputValidations.IsListItemSelected(usersList, listMsg, "You must choose a user first"))
            {
                bool validWidth = InputValidations.ValidateGreaterThanZero(widthField.Text, widthMsg,
                                                                           "width must be greater than zero")
                                  &&
                                  InputValidations.ValidateStrictMinor(Convert.ToInt32(widthField.Text), 101, widthMsg,
                                                                       "width must be lower than 100");

                bool validLength = InputValidations.ValidateGreaterThanZero(widthField.Text, lengthMsg,
                                                                            "length must be greater than zero")
                                   &&
                                   InputValidations.ValidateStrictMinor(Convert.ToInt32(lengthField.Text), 101, lengthMsg,
                                                                        "length must be lower than 100");
                bool validName = InputValidations.ValidateIfEmpty(nameText, nameMsg);

                if (validName && validWidth && validLength)
                {
                    CreateAndEditBlueprint();
                }
            }
        }
Exemplo n.º 6
0
 private void nameText_Leave(object sender, EventArgs e)
 {
     InputValidations.ValidateIfEmpty(nameText, msgName);
 }
Exemplo n.º 7
0
        private bool IsUserNameValid()
        {
            bool isValid = InputValidations.ValidateIfEmpty(userNameText, userNameMsg) && !RepeatedUser();

            return(isValid);
        }
Exemplo n.º 8
0
 private void passwordText_Leave(object sender, EventArgs e)
 {
     InputValidations.ValidateIfEmpty(passwordText, passwordMsg);
 }
Exemplo n.º 9
0
 private void surnameText_Leave(object sender, EventArgs e)
 {
     InputValidations.ValidateIfEmpty(surnameText, surnameMsg);
 }
Exemplo n.º 10
0
 private void nameTxt_Leave(object sender, EventArgs e)
 {
     InputValidations.ValidateIfEmpty(nameTxt, nameMsg);
 }
Exemplo n.º 11
0
 private void addressText_Leave(object sender, EventArgs e)
 {
     InputValidations.ValidateIfEmpty(addressText, addressMsg);
 }