AerolineaFrba.Abm_Aeronave.Alta.validarTipos C# (CSharp) Method

validarTipos() private method

private validarTipos ( ) : System.Boolean
return System.Boolean
        private Boolean validarTipos()
        {
            Boolean huboError = false;

            huboError = !Validacion.esMatricula(mkMatricula, true) || huboError;
            huboError = !Validacion.esTextoAlfanumerico(txtModelo, false, "modelo", true) || huboError;
            huboError = !Validacion.esNumero(txtButacas, "cantidad de butacas pasillo", true) || huboError;
            huboError = !Validacion.esNumero(txtVenta, "cantidad de butacas ventanilla", true) || huboError;
            huboError = !Validacion.esDecimal(txtKilos, "cantidad de Kg", true) || huboError;

            return huboError;
        }