/// <summary>
        /// Convert a nettiers entity to the ws proxy entity.
        /// </summary>
        public static WsProxy.Vendor Convert(Nettiers.AdventureWorks.Entities.Vendor item)
        {
            WsProxy.Vendor outItem = new WsProxy.Vendor();
            outItem.VendorId                = item.VendorId;
            outItem.AccountNumber           = item.AccountNumber;
            outItem.Name                    = item.Name;
            outItem.CreditRating            = item.CreditRating;
            outItem.PreferredVendorStatus   = item.PreferredVendorStatus;
            outItem.ActiveFlag              = item.ActiveFlag;
            outItem.PurchasingWebServiceUrl = item.PurchasingWebServiceUrl;
            outItem.ModifiedDate            = item.ModifiedDate;


            return(outItem);
        }
        /// <summary>
        /// Convert a nettiers collection to the ws proxy collection.
        /// </summary>
        public static Nettiers.AdventureWorks.Entities.Vendor Convert(Nettiers.AdventureWorks.Entities.Vendor outItem, WsProxy.Vendor item)
        {
            if (item != null && outItem != null)
            {
                outItem.VendorId                = item.VendorId;
                outItem.AccountNumber           = item.AccountNumber;
                outItem.Name                    = item.Name;
                outItem.CreditRating            = item.CreditRating;
                outItem.PreferredVendorStatus   = item.PreferredVendorStatus;
                outItem.ActiveFlag              = item.ActiveFlag;
                outItem.PurchasingWebServiceUrl = item.PurchasingWebServiceUrl;
                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.Vendor object to update.</param>
        /// <remarks>
        ///		After updating the datasource, the Nettiers.AdventureWorks.Entities.Vendor 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.Vendor entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "Purchasing.usp_adwTiers_Vendor_Update", _useStoredProcedure);

            database.AddInParameter(commandWrapper, "@VendorId", DbType.Int32, entity.VendorId);
            database.AddInParameter(commandWrapper, "@AccountNumber", DbType.String, entity.AccountNumber);
            database.AddInParameter(commandWrapper, "@Name", DbType.String, entity.Name);
            database.AddInParameter(commandWrapper, "@CreditRating", DbType.Byte, entity.CreditRating);
            database.AddInParameter(commandWrapper, "@PreferredVendorStatus", DbType.Boolean, entity.PreferredVendorStatus);
            database.AddInParameter(commandWrapper, "@ActiveFlag", DbType.Boolean, entity.ActiveFlag);
            database.AddInParameter(commandWrapper, "@PurchasingWebServiceUrl", DbType.String, entity.PurchasingWebServiceUrl);
            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);
            }


            entity.AcceptChanges();

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

            return(Convert.ToBoolean(results));
        }
        /// <summary>
        ///     Inserts a Nettiers.AdventureWorks.Entities.Vendor object into the datasource using a transaction.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.Vendor object to insert.</param>
        /// <remarks>
        ///		After inserting into the datasource, the Nettiers.AdventureWorks.Entities.Vendor 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 Insert(TransactionManager transactionManager, Nettiers.AdventureWorks.Entities.Vendor entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "Purchasing.usp_adwTiers_Vendor_Insert", _useStoredProcedure);

            database.AddOutParameter(commandWrapper, "@VendorId", DbType.Int32, 4);
            database.AddInParameter(commandWrapper, "@AccountNumber", DbType.String, entity.AccountNumber);
            database.AddInParameter(commandWrapper, "@Name", DbType.String, entity.Name);
            database.AddInParameter(commandWrapper, "@CreditRating", DbType.Byte, entity.CreditRating);
            database.AddInParameter(commandWrapper, "@PreferredVendorStatus", DbType.Boolean, entity.PreferredVendorStatus);
            database.AddInParameter(commandWrapper, "@ActiveFlag", DbType.Boolean, entity.ActiveFlag);
            database.AddInParameter(commandWrapper, "@PurchasingWebServiceUrl", DbType.String, entity.PurchasingWebServiceUrl);
            database.AddInParameter(commandWrapper, "@ModifiedDate", DbType.DateTime, entity.ModifiedDate);

            int results = 0;

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

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

            object _vendorId = database.GetParameterValue(commandWrapper, "@VendorId");

            entity.VendorId = (System.Int32)_vendorId;


            entity.AcceptChanges();

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

            return(Convert.ToBoolean(results));
        }
        /// <summary>
        ///     Inserts a Nettiers.AdventureWorks.Entities.Vendor object into the datasource using a transaction.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.Vendor object to insert.</param>
        /// <remarks></remarks>
        /// <returns>Returns true if operation is successful.</returns>
        public override bool Insert(TransactionManager transactionManager, Nettiers.AdventureWorks.Entities.Vendor entity)
        {
            WsProxy.AdventureWorksServices proxy = new WsProxy.AdventureWorksServices();
            proxy.Url = Url;

            try
            {
                WsProxy.Vendor result = proxy.VendorProvider_Insert(Convert(entity));
                Convert(entity, result);
                return(true);
            }
            catch (SoapException soex)
            {
                System.Diagnostics.Debug.WriteLine(soex);
                throw soex;
            }
            catch (Exception ex)
            {
                System.Diagnostics.Debug.WriteLine(ex);
                throw ex;
            }
        }
 /// <summary>
 /// Convert a nettiers collection to the ws proxy collection.
 /// </summary>
 public static Nettiers.AdventureWorks.Entities.Vendor Convert(WsProxy.Vendor item)
 {
     Nettiers.AdventureWorks.Entities.Vendor outItem = item == null ? null : new Nettiers.AdventureWorks.Entities.Vendor();
     Convert(outItem, item);
     return(outItem);
 }