protected ValidationResult ValidationSucces() { CurrentResult = new ValidationResult(true); return(CurrentResult); }
protected ValidationResult ValidationFailed(string message) { CurrentResult = new ValidationResult(false, message); return(CurrentResult); }
protected ValidationResult CannotBeNull() { CurrentResult = new ValidationResult(false, "Value cannot be null or empty"); return(CurrentResult); }