/// <summary>
        /// Convert a nettiers collection to the ws proxy collection.
        /// </summary>
        public static Nettiers.AdventureWorks.Entities.Customer Convert(Nettiers.AdventureWorks.Entities.Customer outItem, WsProxy.Customer item)
        {
            if (item != null && outItem != null)
            {
                outItem.CustomerId    = item.CustomerId;
                outItem.TerritoryId   = item.TerritoryId;
                outItem.AccountNumber = item.AccountNumber;
                outItem.CustomerType  = item.CustomerType;
                outItem.Rowguid       = item.Rowguid;
                outItem.ModifiedDate  = item.ModifiedDate;

                outItem.AcceptChanges();
            }

            return(outItem);
        }
        /// <summary>
        ///     Update an existing row in the datasource.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.Customer object to update.</param>
        /// <remarks>
        ///		After updating the datasource, the Nettiers.AdventureWorks.Entities.Customer object will be updated
        ///     to refelect any changes made by the datasource. (ie: identity or computed columns)
        /// </remarks>
        /// <returns>Returns true if operation is successful.</returns>
        /// <exception cref="System.Exception">The command could not be executed.</exception>
        /// <exception cref="System.Data.DataException">The <paramref name="transactionManager"/> is not open.</exception>
        /// <exception cref="System.Data.Common.DbException">The command could not be executed.</exception>
        public override bool Update(TransactionManager transactionManager, Nettiers.AdventureWorks.Entities.Customer entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "Sales.usp_adwTiers_Customer_Update", _useStoredProcedure);

            database.AddInParameter(commandWrapper, "@CustomerId", DbType.Int32, entity.CustomerId);
            database.AddInParameter(commandWrapper, "@TerritoryId", DbType.Int32, (entity.TerritoryId.HasValue ? (object)entity.TerritoryId : System.DBNull.Value));
            database.AddOutParameter(commandWrapper, "@AccountNumber", DbType.AnsiString, 10);

            database.AddInParameter(commandWrapper, "@CustomerType", DbType.StringFixedLength, entity.CustomerType);
            database.AddInParameter(commandWrapper, "@Rowguid", DbType.Guid, entity.Rowguid);
            database.AddInParameter(commandWrapper, "@ModifiedDate", DbType.DateTime, entity.ModifiedDate);

            int results = 0;

            //Provider Data Requesting Command Event
            OnDataRequesting(new CommandEventArgs(commandWrapper, "Update", entity));

            if (transactionManager != null)
            {
                results = Utility.ExecuteNonQuery(transactionManager, commandWrapper);
            }
            else
            {
                results = Utility.ExecuteNonQuery(database, commandWrapper);
            }

            //Stop Tracking Now that it has been updated and persisted.
            if (DataRepository.Provider.EnableEntityTracking)
            {
                EntityManager.StopTracking(entity.EntityTrackingKey);
            }

            object _accountNumber = database.GetParameterValue(commandWrapper, "@AccountNumber");

            entity.AccountNumber = (System.String)_accountNumber;

            entity.AcceptChanges();

            //Provider Data Requested Command Event
            OnDataRequested(new CommandEventArgs(commandWrapper, "Update", entity));

            return(Convert.ToBoolean(results));
        }
        /// <summary>
        ///     Update an existing row in the datasource.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.Customer object to update.</param>
        /// <remarks></remarks>
        /// <returns>Returns true if operation is successful.</returns>
        public override bool Update(TransactionManager transactionManager, Nettiers.AdventureWorks.Entities.Customer entity)
        {
            WsProxy.AdventureWorksServices proxy = new WsProxy.AdventureWorksServices();
            proxy.Url = Url;

            try
            {
                WsProxy.Customer result = proxy.CustomerProvider_Update(Convert(entity));
                Convert(entity, result);
                entity.AcceptChanges();
                return(true);
            }
            catch (SoapException soex)
            {
                System.Diagnostics.Debug.WriteLine(soex);
                throw soex;
            }
            catch (Exception ex)
            {
                System.Diagnostics.Debug.WriteLine(ex);
                throw ex;
            }
        }