Exemple #1
0
        public BaseModelValidationResult Validate()
        {
            var validationResult = new BaseModelValidationResult();

            if (string.IsNullOrWhiteSpace(Name))
            {
                validationResult.Append($"Name cannot be empty");
            }
            if (string.IsNullOrWhiteSpace(Surname))
            {
                validationResult.Append($"Surname cannot be empty");
            }
            if (!(0 < GroupIndex && GroupIndex < 100))
            {
                validationResult.Append($"GroupIndex {GroupIndex} is out of range (0..100)");
            }

            if (!string.IsNullOrEmpty(Name) && !char.IsUpper(Name.FirstOrDefault()))
            {
                validationResult.Append($"Name {Name} should start from capital letter");
            }
            if (!string.IsNullOrEmpty(Surname) && !char.IsUpper(Surname.FirstOrDefault()))
            {
                validationResult.Append($"Surname {Surname} should start from capital letter");
            }

            return(validationResult);
        }
Exemple #2
0
        public BaseModelValidationResult Validate()
        {
            var validationResult = new BaseModelValidationResult();

            if (string.IsNullOrWhiteSpace(Name))
            {
                validationResult.Append($"Имя не может иметь пустое значение");
            }
            if (string.IsNullOrWhiteSpace(Surname))
            {
                validationResult.Append($"Фамилия не может иметь пустое значение");
            }
            if (!string.IsNullOrEmpty(Name) && !char.IsUpper(Name.FirstOrDefault()))
            {
                validationResult.Append($"Name {Name} should start from capital letter");
            }
            if (!string.IsNullOrEmpty(Surname) && !char.IsUpper(Surname.FirstOrDefault()))
            {
                validationResult.Append($"Surname {Surname} should start from capital letter");
            }

            return(validationResult);
        }