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

Save() public method

Update the parameter values for storing Paratext's valid and invalid lists in CheckDataSource and then save them. This is here because the Paratext 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(kValidItemsParameter, ValidItems);
			m_checksDataSource.SetParameterValue(kInvalidItemsParameter, InvalidItems);
			m_checksDataSource.Save();
		}