Inheritance: SalesPersonQuotaHistoryBase
Ejemplo n.º 1
0
        /// <summary>
        /// Convert a nettiers entity to the ws proxy entity.
        /// </summary>
        public static WsProxy.SalesPersonQuotaHistory Convert(Nettiers.AdventureWorks.Entities.SalesPersonQuotaHistory item)
        {
            WsProxy.SalesPersonQuotaHistory outItem = new WsProxy.SalesPersonQuotaHistory();
            outItem.SalesPersonId = item.SalesPersonId;
            outItem.QuotaDate     = item.QuotaDate;
            outItem.SalesQuota    = item.SalesQuota;
            outItem.Rowguid       = item.Rowguid;
            outItem.ModifiedDate  = item.ModifiedDate;

            outItem.OriginalSalesPersonId = item.OriginalSalesPersonId;
            outItem.OriginalQuotaDate     = item.OriginalQuotaDate;

            return(outItem);
        }
Ejemplo n.º 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.SalesPersonQuotaHistory object to update.</param>
        /// <remarks>
        ///		After updating the datasource, the Nettiers.AdventureWorks.Entities.SalesPersonQuotaHistory 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.SalesPersonQuotaHistory entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "Sales.usp_adwTiers_SalesPersonQuotaHistory_Update", _useStoredProcedure);

            database.AddInParameter(commandWrapper, "@SalesPersonId", DbType.Int32, entity.SalesPersonId);
            database.AddInParameter(commandWrapper, "@OriginalSalesPersonId", DbType.Int32, entity.OriginalSalesPersonId);
            database.AddInParameter(commandWrapper, "@QuotaDate", DbType.DateTime, entity.QuotaDate);
            database.AddInParameter(commandWrapper, "@OriginalQuotaDate", DbType.DateTime, entity.OriginalQuotaDate);
            database.AddInParameter(commandWrapper, "@SalesQuota", DbType.Currency, entity.SalesQuota);
            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);
            }

            entity.OriginalSalesPersonId = entity.SalesPersonId;
            entity.OriginalQuotaDate     = entity.QuotaDate;

            entity.AcceptChanges();

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

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

            database.AddInParameter(commandWrapper, "@SalesPersonId", DbType.Int32, entity.SalesPersonId);
            database.AddInParameter(commandWrapper, "@QuotaDate", DbType.DateTime, entity.QuotaDate);
            database.AddInParameter(commandWrapper, "@SalesQuota", DbType.Currency, entity.SalesQuota);
            database.AddOutParameter(commandWrapper, "@Rowguid", DbType.Guid, 16);
            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 _rowguid = database.GetParameterValue(commandWrapper, "@Rowguid");

            entity.Rowguid = (System.Guid)_rowguid;

            entity.OriginalSalesPersonId = entity.SalesPersonId;
            entity.OriginalQuotaDate     = entity.QuotaDate;

            entity.AcceptChanges();

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

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

            try
            {
                WsProxy.SalesPersonQuotaHistory result = proxy.SalesPersonQuotaHistoryProvider_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;
            }
        }
Ejemplo n.º 5
0
        /// <summary>
        /// Convert a nettiers collection to the ws proxy collection.
        /// </summary>
        public static Nettiers.AdventureWorks.Entities.SalesPersonQuotaHistory Convert(Nettiers.AdventureWorks.Entities.SalesPersonQuotaHistory outItem, WsProxy.SalesPersonQuotaHistory item)
        {
            if (item != null && outItem != null)
            {
                outItem.SalesPersonId = item.SalesPersonId;
                outItem.QuotaDate     = item.QuotaDate;
                outItem.SalesQuota    = item.SalesQuota;
                outItem.Rowguid       = item.Rowguid;
                outItem.ModifiedDate  = item.ModifiedDate;

                outItem.OriginalSalesPersonId = item.SalesPersonId;
                outItem.OriginalQuotaDate     = item.QuotaDate;
                outItem.AcceptChanges();
            }

            return(outItem);
        }
Ejemplo n.º 6
0
 /// <summary>
 /// Convert a nettiers collection to the ws proxy collection.
 /// </summary>
 public static Nettiers.AdventureWorks.Entities.SalesPersonQuotaHistory Convert(WsProxy.SalesPersonQuotaHistory item)
 {
     Nettiers.AdventureWorks.Entities.SalesPersonQuotaHistory outItem = item == null ? null : new Nettiers.AdventureWorks.Entities.SalesPersonQuotaHistory();
     Convert(outItem, item);
     return(outItem);
 }
		/// <summary>
        /// Make any alterations necessary (i.e. for DB check constraints, special test cases, etc.)
        /// </summary>
        /// <param name="mock">Object to be modified</param>
        static private void SetSpecialTestData(SalesPersonQuotaHistory mock)
        {
            //Code your changes to the data object here.
        }
        ///<summary>
        ///  Update the Typed SalesPersonQuotaHistory Entity with modified mock values.
        ///</summary>
        static public void UpdateMockInstance(TransactionManager tm, SalesPersonQuotaHistory mock)
        {
            SalesPersonQuotaHistoryTest.UpdateMockInstance_Generated(tm, mock);
            
			// make any alterations necessary 
            // (i.e. for DB check constraints, special test cases, etc.)
			SetSpecialTestData(mock);
        }