SILUBS.ScriptureChecks.RepeatedWordsCheck.Save C# (CSharp) Method

Save() public method

Update the parameter values for storing the valid and invalid lists in CheckDataSource and then save them. This is here because the inventory form does not know the names of the parameters that need to be saved for a given check, only the check knows this.
public Save ( ) : void
return void
		public void Save()
		{
			m_checksDataSource.SetParameterValue("RepeatableWords", validItems);
			m_checksDataSource.SetParameterValue("NonRepeatableWords", invalidItems);
			m_checksDataSource.Save();
		}