Example #1
0
        public void Validate()
        {
            if (StringUtility.AreNullOrWhitespace(this.DownloadDirectory, this.ExtractDirectory, this.InstallerManifest))
            {
                this.IsValid = false;
            }

            this.IsValid = true;
        }
        private void Validate()
        {
            this.IsValid = true;

            if (StringUtility.AreNullOrWhitespace(this.DatabaseName, this.Password, this.MixERPPassword,
                                                  this.ReportUserPassword))
            {
                this.IsValid = false;
            }
        }
Example #3
0
        public void Validate()
        {
            if (StringUtility.AreNullOrWhitespace(this.OfficeCode, this.OfficeName, this.NickName, this.CurrencyCode,
                                                  this.CurrencySymbol, this.CurrencyName, this.HundredthName, this.AdminName, this.UserName, this.Password))
            {
                this._isValid = false;
                return;
            }

            this._isValid = true;
        }