private void appendDestinationWithNewType(OldFFDBDataSet.AccountTypeRow type)
        {
            AccountTypeDRM newAccountType = new AccountTypeDRM(type.name);

            sourceToDestinationID.Add(type.id, newAccountType.ID);
            destinationNames.Add(newAccountType.Name, newAccountType.ID);
        }
        private void mergeAccountTypeIntoDestination(OldFFDBDataSet.AccountTypeRow type)
        {
            int destinationID;

            if (destinationNames.TryGetValue(type.name, out destinationID))
            {
                sourceToDestinationID.Add(type.id, destinationID);
            }

            else
            {
                appendDestinationWithNewType(type);
            }
        }