appendSpecifications() public method

public appendSpecifications ( Lock aLock, Specification el ) : void
aLock Lock
el Specification
return void
        /// <summary>
        ///     Creates an update of this specification in the provided dictionary
        /// </summary>
        /// <param name="dictionary">The update dictionary</param>
        /// <returns>An update of this specification</returns>
        public Specification CreateSpecificationUpdate(Dictionary dictionary)
        {
            Specification retVal = new Specification();
            retVal.Name = Name;
            retVal.setUpdates(Guid);

            dictionary.appendSpecifications(retVal);

            return retVal;
        }