예제 #1
0
        /// <summary>
        /// Creates backups of all the data objects in the Vector so that changes can later be cancelled if necessary.
        /// </summary>
        protected internal override void createDataBackup()
        {
            StateMod_ReservoirAccount acct = null;
            int size = _data.Count;

            for (int i = 0; i < size; i++)
            {
                acct = (StateMod_ReservoirAccount)_data[i];
                acct.createBackup();
            }
        }