/// <summary>
        /// Convert a collection from  to a nettiers collection to a the ws proxy collection.
        /// </summary>
        public static WsProxy.EmployeePayHistory[] Convert(Nettiers.AdventureWorks.Entities.TList <EmployeePayHistory> items)
        {
            WsProxy.EmployeePayHistory[] outItems = new WsProxy.EmployeePayHistory[items.Count];
            int count = 0;

            foreach (Nettiers.AdventureWorks.Entities.EmployeePayHistory item in items)
            {
                outItems[count++] = Convert(item);
            }
            return(outItems);
        }
        /// <summary>
        /// Convert a nettiers entity to the ws proxy entity.
        /// </summary>
        public static WsProxy.EmployeePayHistory Convert(Nettiers.AdventureWorks.Entities.EmployeePayHistory item)
        {
            WsProxy.EmployeePayHistory outItem = new WsProxy.EmployeePayHistory();
            outItem.EmployeeId     = item.EmployeeId;
            outItem.RateChangeDate = item.RateChangeDate;
            outItem.Rate           = item.Rate;
            outItem.PayFrequency   = item.PayFrequency;
            outItem.ModifiedDate   = item.ModifiedDate;

            outItem.OriginalEmployeeId     = item.OriginalEmployeeId;
            outItem.OriginalRateChangeDate = item.OriginalRateChangeDate;

            return(outItem);
        }
        /// <summary>
        ///     Gets rows from the datasource based on the PK_EmployeePayHistory_EmployeeID_RateChangeDate index.
        /// </summary>
        /// <param name="start">Row number at which to start reading.</param>
        /// <param name="pageLength">Number of rows to return.</param>
        /// <param name="_employeeId">Employee identification number. Foreign key to Employee.EmployeeID.</param>
        /// <param name="_rateChangeDate">Date the change in pay is effective</param>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="count">out parameter to get total records for query</param>
        /// <remarks></remarks>
        /// <returns>Returns an instance of the <see cref="Nettiers.AdventureWorks.Entities.EmployeePayHistory"/> class.</returns>
        public override Nettiers.AdventureWorks.Entities.EmployeePayHistory GetByEmployeeIdRateChangeDate(TransactionManager transactionManager, System.Int32 _employeeId, System.DateTime _rateChangeDate, int start, int pageLength, out int count)
        {
            try
            {
                WsProxy.AdventureWorksServices proxy = new WsProxy.AdventureWorksServices();
                proxy.Url = Url;
                WsProxy.EmployeePayHistory items = proxy.EmployeePayHistoryProvider_GetByEmployeeIdRateChangeDate(_employeeId, _rateChangeDate, start, pageLength, out count);

                return(Convert(items));
            }
            catch (SoapException soex)
            {
                System.Diagnostics.Debug.WriteLine(soex);
                throw soex;
            }
            catch (Exception ex)
            {
                System.Diagnostics.Debug.WriteLine(ex);
                throw ex;
            }
        }
        /// <summary>
        ///     Inserts a Nettiers.AdventureWorks.Entities.EmployeePayHistory object into the datasource using a transaction.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.EmployeePayHistory object to insert.</param>
        /// <remarks></remarks>
        /// <returns>Returns true if operation is successful.</returns>
        public override bool Insert(TransactionManager transactionManager, Nettiers.AdventureWorks.Entities.EmployeePayHistory entity)
        {
            WsProxy.AdventureWorksServices proxy = new WsProxy.AdventureWorksServices();
            proxy.Url = Url;

            try
            {
                WsProxy.EmployeePayHistory result = proxy.EmployeePayHistoryProvider_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 collection from  to a nettiers collection to a the ws proxy collection.
		/// </summary>
		public static WsProxy.EmployeePayHistory[] Convert(Nettiers.AdventureWorks.Entities.TList<EmployeePayHistory> items)
		{
			WsProxy.EmployeePayHistory[] outItems = new WsProxy.EmployeePayHistory[items.Count];
			int count = 0;
		
			foreach (Nettiers.AdventureWorks.Entities.EmployeePayHistory item in items)
			{
				outItems[count++] = Convert(item);
			}
			return outItems;
		}
		/// <summary>
		/// Convert a nettiers entity to the ws proxy entity.
		/// </summary>
		public static WsProxy.EmployeePayHistory Convert(Nettiers.AdventureWorks.Entities.EmployeePayHistory item)
		{			
			WsProxy.EmployeePayHistory outItem = new WsProxy.EmployeePayHistory();			
			outItem.EmployeeId = item.EmployeeId;
			outItem.RateChangeDate = item.RateChangeDate;
			outItem.Rate = item.Rate;
			outItem.PayFrequency = item.PayFrequency;
			outItem.ModifiedDate = item.ModifiedDate;

			outItem.OriginalEmployeeId = item.OriginalEmployeeId;
			outItem.OriginalRateChangeDate = item.OriginalRateChangeDate;
							
			return outItem;
		}
        /// <summary>
        /// Convert a nettiers collection to the ws proxy collection.
        /// </summary>
        public static Nettiers.AdventureWorks.Entities.EmployeePayHistory Convert(Nettiers.AdventureWorks.Entities.EmployeePayHistory outItem, WsProxy.EmployeePayHistory item)
        {
            if (item != null && outItem != null)
            {
                outItem.EmployeeId     = item.EmployeeId;
                outItem.RateChangeDate = item.RateChangeDate;
                outItem.Rate           = item.Rate;
                outItem.PayFrequency   = item.PayFrequency;
                outItem.ModifiedDate   = item.ModifiedDate;

                outItem.OriginalEmployeeId     = item.EmployeeId;
                outItem.OriginalRateChangeDate = item.RateChangeDate;
                outItem.AcceptChanges();
            }

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