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

            foreach (Nettiers.AdventureWorks.Entities.ErrorLog item in items)
            {
                outItems[count++] = Convert(item);
            }
            return(outItems);
        }
Beispiel #2
0
        /// <summary>
        /// Convert a nettiers entity to the ws proxy entity.
        /// </summary>
        public static WsProxy.ErrorLog Convert(Nettiers.AdventureWorks.Entities.ErrorLog item)
        {
            WsProxy.ErrorLog outItem = new WsProxy.ErrorLog();
            outItem.ErrorLogId     = item.ErrorLogId;
            outItem.ErrorTime      = item.ErrorTime;
            outItem.UserName       = item.UserName;
            outItem.ErrorNumber    = item.ErrorNumber;
            outItem.ErrorSeverity  = item.ErrorSeverity;
            outItem.ErrorState     = item.ErrorState;
            outItem.ErrorProcedure = item.ErrorProcedure;
            outItem.ErrorLine      = item.ErrorLine;
            outItem.ErrorMessage   = item.ErrorMessage;


            return(outItem);
        }
Beispiel #3
0
        /// <summary>
        ///     Gets rows from the datasource based on the PK_ErrorLog_ErrorLogID index.
        /// </summary>
        /// <param name="start">Row number at which to start reading.</param>
        /// <param name="pageLength">Number of rows to return.</param>
        /// <param name="_errorLogId">Primary key for ErrorLog records.</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.ErrorLog"/> class.</returns>
        public override Nettiers.AdventureWorks.Entities.ErrorLog GetByErrorLogId(TransactionManager transactionManager, System.Int32 _errorLogId, int start, int pageLength, out int count)
        {
            try
            {
                WsProxy.AdventureWorksServices proxy = new WsProxy.AdventureWorksServices();
                proxy.Url = Url;
                WsProxy.ErrorLog items = proxy.ErrorLogProvider_GetByErrorLogId(_errorLogId, 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;
            }
        }
Beispiel #4
0
        /// <summary>
        ///     Inserts a Nettiers.AdventureWorks.Entities.ErrorLog object into the datasource using a transaction.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.ErrorLog object to insert.</param>
        /// <remarks></remarks>
        /// <returns>Returns true if operation is successful.</returns>
        public override bool Insert(TransactionManager transactionManager, Nettiers.AdventureWorks.Entities.ErrorLog entity)
        {
            WsProxy.AdventureWorksServices proxy = new WsProxy.AdventureWorksServices();
            proxy.Url = Url;

            try
            {
                WsProxy.ErrorLog result = proxy.ErrorLogProvider_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.ErrorLog[] Convert(Nettiers.AdventureWorks.Entities.TList<ErrorLog> items)
		{
			WsProxy.ErrorLog[] outItems = new WsProxy.ErrorLog[items.Count];
			int count = 0;
		
			foreach (Nettiers.AdventureWorks.Entities.ErrorLog item in items)
			{
				outItems[count++] = Convert(item);
			}
			return outItems;
		}
		/// <summary>
		/// Convert a nettiers entity to the ws proxy entity.
		/// </summary>
		public static WsProxy.ErrorLog Convert(Nettiers.AdventureWorks.Entities.ErrorLog item)
		{			
			WsProxy.ErrorLog outItem = new WsProxy.ErrorLog();			
			outItem.ErrorLogId = item.ErrorLogId;
			outItem.ErrorTime = item.ErrorTime;
			outItem.UserName = item.UserName;
			outItem.ErrorNumber = item.ErrorNumber;
			outItem.ErrorSeverity = item.ErrorSeverity;
			outItem.ErrorState = item.ErrorState;
			outItem.ErrorProcedure = item.ErrorProcedure;
			outItem.ErrorLine = item.ErrorLine;
			outItem.ErrorMessage = item.ErrorMessage;

							
			return outItem;
		}
Beispiel #7
0
        /// <summary>
        /// Convert a nettiers collection to the ws proxy collection.
        /// </summary>
        public static Nettiers.AdventureWorks.Entities.ErrorLog Convert(Nettiers.AdventureWorks.Entities.ErrorLog outItem, WsProxy.ErrorLog item)
        {
            if (item != null && outItem != null)
            {
                outItem.ErrorLogId     = item.ErrorLogId;
                outItem.ErrorTime      = item.ErrorTime;
                outItem.UserName       = item.UserName;
                outItem.ErrorNumber    = item.ErrorNumber;
                outItem.ErrorSeverity  = item.ErrorSeverity;
                outItem.ErrorState     = item.ErrorState;
                outItem.ErrorProcedure = item.ErrorProcedure;
                outItem.ErrorLine      = item.ErrorLine;
                outItem.ErrorMessage   = item.ErrorMessage;

                outItem.AcceptChanges();
            }

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