Inheritance: CustomerBase
        /// <summary>
        /// Convert a nettiers entity to the ws proxy entity.
        /// </summary>
        public static WsProxy.Customer Convert(Nettiers.AdventureWorks.Entities.Customer item)
        {
            WsProxy.Customer outItem = new WsProxy.Customer();
            outItem.CustomerId    = item.CustomerId;
            outItem.TerritoryId   = item.TerritoryId;
            outItem.AccountNumber = item.AccountNumber;
            outItem.CustomerType  = item.CustomerType;
            outItem.Rowguid       = item.Rowguid;
            outItem.ModifiedDate  = item.ModifiedDate;


            return(outItem);
        }
		/// <summary>
		/// Inserts a mock Customer entity into the database.
		/// </summary>
		private void Step_01_Insert_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				mock = CreateMockInstance(tm);
				Assert.IsTrue(DataRepository.CustomerProvider.Insert(tm, mock), "Insert failed");
										
				System.Console.WriteLine("DataRepository.CustomerProvider.Insert(mock):");			
				System.Console.WriteLine(mock);			
				
				//normally one would commit here
				//tm.Commit();
				//IDisposable will Rollback Transaction since it's left uncommitted
			}
		}
        /// <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>
        ///     Inserts a Nettiers.AdventureWorks.Entities.Customer object into the datasource using a transaction.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.Customer object to insert.</param>
        /// <remarks></remarks>
        /// <returns>Returns true if operation is successful.</returns>
        public override bool Insert(TransactionManager transactionManager, Nettiers.AdventureWorks.Entities.Customer entity)
        {
            WsProxy.AdventureWorksServices proxy = new WsProxy.AdventureWorksServices();
            proxy.Url = Url;

            try
            {
                WsProxy.Customer result = proxy.CustomerProvider_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;
            }
        }
Esempio n. 6
0
		/// <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(Customer mock)
        {
            //Code your changes to the data object here.

            //Set a random customer type
            if (TestUtility.Instance.RandomBoolean())
            {
                mock.CustomerType = "S";
            }
            else
            {
                mock.CustomerType = "I";
            }
        }
Esempio n. 7
0
        ///<summary>
        ///  Update the Typed Customer Entity with modified mock values.
        ///</summary>
        static public void UpdateMockInstance(TransactionManager tm, Customer mock)
        {
            CustomerTest.UpdateMockInstance_Generated(tm, mock);
            
			// make any alterations necessary 
            // (i.e. for DB check constraints, special test cases, etc.)
			SetSpecialTestData(mock);
        }
 /// <summary>
 /// Convert a nettiers collection to the ws proxy collection.
 /// </summary>
 public static Nettiers.AdventureWorks.Entities.Customer Convert(WsProxy.Customer item)
 {
     Nettiers.AdventureWorks.Entities.Customer outItem = item == null ? null : new Nettiers.AdventureWorks.Entities.Customer();
     Convert(outItem, item);
     return(outItem);
 }
		///<summary>
		///  Update the Typed Customer Entity with modified mock values.
		///</summary>
		static public void UpdateMockInstance_Generated(TransactionManager tm, Customer mock)
		{
			mock.CustomerType = TestUtility.Instance.RandomString(1, false);;
			mock.ModifiedDate = TestUtility.Instance.RandomDateTime();
			
			int count0 = 0;
			TList<SalesTerritory> _collection0 = DataRepository.SalesTerritoryProvider.GetPaged(tm, 0, 10, out count0);
			//_collection0.Shuffle();
			if (_collection0.Count > 0)
			{
				mock.TerritoryId = _collection0[0].TerritoryId;
			}
		}
Esempio n. 10
0
		///<summary>
		///  Returns a Typed Customer Entity with mock values.
		///</summary>
		static public Customer CreateMockInstance_Generated(TransactionManager tm)
		{		
			Customer mock = new Customer();
						
			mock.CustomerType = TestUtility.Instance.RandomString(1, false);;
			mock.ModifiedDate = TestUtility.Instance.RandomDateTime();
			
			int count0 = 0;
			TList<SalesTerritory> _collection0 = DataRepository.SalesTerritoryProvider.GetPaged(tm, 0, 10, out count0);
			//_collection0.Shuffle();
			if (_collection0.Count > 0)
			{
				mock.TerritoryId = _collection0[0].TerritoryId;
						
			}
		
			// create a temporary collection and add the item to it
			TList<Customer> tempMockCollection = new TList<Customer>();
			tempMockCollection.Add(mock);
			tempMockCollection.Remove(mock);
			
		
		   return (Customer)mock;
		}
Esempio n. 11
0
		/// <summary>
		/// Test methods exposed by the EntityHelper class.
		/// </summary>
		private void Step_20_TestEntityHelper_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				mock = CreateMockInstance(tm);
				
				Customer entity = mock.Copy() as Customer;
				entity = (Customer)mock.Clone();
				Assert.IsTrue(Customer.ValueEquals(entity, mock), "Clone is not working");
			}
		}
Esempio n. 12
0
		/// <summary>
		/// Serialize a Customer collection into a temporary file.
		/// </summary>
		private void Step_08_SerializeCollection_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				string fileName = System.IO.Path.Combine(System.IO.Path.GetTempPath(), "temp_CustomerCollection.xml");
				
				mock = CreateMockInstance(tm);
				TList<Customer> mockCollection = new TList<Customer>();
				mockCollection.Add(mock);
			
				EntityHelper.SerializeXml(mockCollection, fileName);
				
				Assert.IsTrue(System.IO.File.Exists(fileName), "Serialized mock collection not found");
				System.Console.WriteLine("TList<Customer> correctly serialized to a temporary file.");					
			}
		}
Esempio n. 13
0
		/// <summary>
		/// Serialize the mock Customer entity into a temporary file.
		/// </summary>
		private void Step_06_SerializeEntity_Generated()
		{	
			using (TransactionManager tm = CreateTransaction())
			{
				mock =  CreateMockInstance(tm);
				string fileName = System.IO.Path.Combine(System.IO.Path.GetTempPath(), "temp_Customer.xml");
			
				EntityHelper.SerializeXml(mock, fileName);
				Assert.IsTrue(System.IO.File.Exists(fileName), "Serialized mock not found");
					
				System.Console.WriteLine("mock correctly serialized to a temporary file.");			
			}
		}
Esempio n. 14
0
		/// <summary>
		/// Deep load all Customer children.
		/// </summary>
		private void Step_03_DeepLoad_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				int count = -1;
				mock =  CreateMockInstance(tm);
				mockCollection = DataRepository.CustomerProvider.GetPaged(tm, 0, 10, out count);
			
				DataRepository.CustomerProvider.DeepLoading += new EntityProviderBaseCore<Customer, CustomerKey>.DeepLoadingEventHandler(
						delegate(object sender, DeepSessionEventArgs e)
						{
							if (e.DeepSession.Count > 3)
								e.Cancel = true;
						}
					);

				if (mockCollection.Count > 0)
				{
					
					DataRepository.CustomerProvider.DeepLoad(tm, mockCollection[0]);
					System.Console.WriteLine("Customer instance correctly deep loaded at 1 level.");
									
					mockCollection.Add(mock);
					// DataRepository.CustomerProvider.DeepSave(tm, mockCollection);
				}
				
				//normally one would commit here
				//tm.Commit();
				//IDisposable will Rollback Transaction since it's left uncommitted
			}
		}