/// <summary> /// Inserts a Nettiers.AdventureWorks.Entities.VendorContact object into the datasource using a transaction. /// </summary> /// <param name="transactionManager"><see cref="TransactionManager"/> object</param> /// <param name="entity">Nettiers.AdventureWorks.Entities.VendorContact object to insert.</param> /// <remarks> /// After inserting into the datasource, the Nettiers.AdventureWorks.Entities.VendorContact 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.VendorContact entity) { SqlDatabase database = new SqlDatabase(this._connectionString); DbCommand commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "Purchasing.usp_adwTiers_VendorContact_Insert", _useStoredProcedure); database.AddInParameter(commandWrapper, "@VendorId", DbType.Int32, entity.VendorId); database.AddInParameter(commandWrapper, "@ContactId", DbType.Int32, entity.ContactId); database.AddInParameter(commandWrapper, "@ContactTypeId", DbType.Int32, entity.ContactTypeId); 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); } entity.OriginalVendorId = entity.VendorId; entity.OriginalContactId = entity.ContactId; entity.AcceptChanges(); //Provider Data Requested Command Event OnDataRequested(new CommandEventArgs(commandWrapper, "Insert", entity)); return(Convert.ToBoolean(results)); }
/// <summary> /// Convert a nettiers collection to the ws proxy collection. /// </summary> public static Nettiers.AdventureWorks.Entities.VendorContact Convert(Nettiers.AdventureWorks.Entities.VendorContact outItem, WsProxy.VendorContact item) { if (item != null && outItem != null) { outItem.VendorId = item.VendorId; outItem.ContactId = item.ContactId; outItem.ContactTypeId = item.ContactTypeId; outItem.ModifiedDate = item.ModifiedDate; outItem.OriginalVendorId = item.VendorId; outItem.OriginalContactId = item.ContactId; 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.VendorContact object to update.</param> /// <remarks></remarks> /// <returns>Returns true if operation is successful.</returns> public override bool Update(TransactionManager transactionManager, Nettiers.AdventureWorks.Entities.VendorContact entity) { WsProxy.AdventureWorksServices proxy = new WsProxy.AdventureWorksServices(); proxy.Url = Url; try { WsProxy.VendorContact result = proxy.VendorContactProvider_Update(Convert(entity)); Convert(entity, result); entity.AcceptChanges(); return(true); } catch (SoapException soex) { System.Diagnostics.Debug.WriteLine(soex); throw soex; } catch (Exception ex) { System.Diagnostics.Debug.WriteLine(ex); throw ex; } }