Example #1
0
        /// <summary>
        /// Convert a nettiers entity to the ws proxy entity.
        /// </summary>
        public static WsProxy.ProductListPriceHistory Convert(Nettiers.AdventureWorks.Entities.ProductListPriceHistory item)
        {
            WsProxy.ProductListPriceHistory outItem = new WsProxy.ProductListPriceHistory();
            outItem.ProductId    = item.ProductId;
            outItem.StartDate    = item.StartDate;
            outItem.EndDate      = item.EndDate;
            outItem.ListPrice    = item.ListPrice;
            outItem.ModifiedDate = item.ModifiedDate;

            outItem.OriginalProductId = item.OriginalProductId;
            outItem.OriginalStartDate = item.OriginalStartDate;

            return(outItem);
        }
Example #2
0
        /// <summary>
        ///     Update an existing row in the datasource.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.ProductListPriceHistory object to update.</param>
        /// <remarks>
        ///		After updating the datasource, the Nettiers.AdventureWorks.Entities.ProductListPriceHistory 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.ProductListPriceHistory entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "Production.usp_adwTiers_ProductListPriceHistory_Update", _useStoredProcedure);

            database.AddInParameter(commandWrapper, "@ProductId", DbType.Int32, entity.ProductId);
            database.AddInParameter(commandWrapper, "@OriginalProductId", DbType.Int32, entity.OriginalProductId);
            database.AddInParameter(commandWrapper, "@StartDate", DbType.DateTime, entity.StartDate);
            database.AddInParameter(commandWrapper, "@OriginalStartDate", DbType.DateTime, entity.OriginalStartDate);
            database.AddInParameter(commandWrapper, "@EndDate", DbType.DateTime, (entity.EndDate.HasValue ? (object)entity.EndDate : System.DBNull.Value));
            database.AddInParameter(commandWrapper, "@ListPrice", DbType.Currency, entity.ListPrice);
            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.OriginalProductId = entity.ProductId;
            entity.OriginalStartDate = entity.StartDate;

            entity.AcceptChanges();

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

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

            try
            {
                WsProxy.ProductListPriceHistory result = proxy.ProductListPriceHistoryProvider_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;
            }
        }
Example #4
0
        /// <summary>
        /// Convert a nettiers collection to the ws proxy collection.
        /// </summary>
        public static Nettiers.AdventureWorks.Entities.ProductListPriceHistory Convert(Nettiers.AdventureWorks.Entities.ProductListPriceHistory outItem, WsProxy.ProductListPriceHistory item)
        {
            if (item != null && outItem != null)
            {
                outItem.ProductId    = item.ProductId;
                outItem.StartDate    = item.StartDate;
                outItem.EndDate      = item.EndDate;
                outItem.ListPrice    = item.ListPrice;
                outItem.ModifiedDate = item.ModifiedDate;

                outItem.OriginalProductId = item.ProductId;
                outItem.OriginalStartDate = item.StartDate;
                outItem.AcceptChanges();
            }

            return(outItem);
        }
Example #5
0
 /// <summary>
 /// Convert a nettiers collection to the ws proxy collection.
 /// </summary>
 public static Nettiers.AdventureWorks.Entities.ProductListPriceHistory Convert(WsProxy.ProductListPriceHistory item)
 {
     Nettiers.AdventureWorks.Entities.ProductListPriceHistory outItem = item == null ? null : new Nettiers.AdventureWorks.Entities.ProductListPriceHistory();
     Convert(outItem, item);
     return(outItem);
 }