/// <summary>Archives a EquityType record.</summary> /// <param name="transaction">Commits or rejects a set of commands as a unit</param> /// <param name="RowVersion">The version number of this row.</param> /// <param name="equityTypeCode">The value for the EquityTypeCode column.</param> /// <param name="archive">true to archive the object, false to unarchive it.</param> public static void Archive(AdoTransaction adoTransaction, SqlTransaction sqlTransaction, long rowVersion, int equityTypeCode) { // Accessor for the EquityType Table. ServerDataModel.EquityTypeDataTable equityTypeTable = ServerDataModel.EquityType; // Rule #1: Make sure the record exists before updating it. ServerDataModel.EquityTypeRow equityTypeRow = equityTypeTable.FindByEquityTypeCode(equityTypeCode); if ((equityTypeRow == null)) { throw new Exception(string.Format("The EquityType table does not have an element identified by {0}", equityTypeCode)); } // Rule #2: Optimistic Concurrency Check if ((equityTypeRow.RowVersion != rowVersion)) { throw new System.Exception("This record is busy. Please try again later."); } // Archive the child records. for (int index = 0; (index < equityTypeRow.GetEquityRows().Length); index = (index + 1)) { ServerDataModel.EquityRow childEquityRow = equityTypeRow.GetEquityRows()[index]; Equity.ArchiveChildren(adoTransaction, sqlTransaction, childEquityRow.RowVersion, childEquityRow.EquityId); } // Increment the row version rowVersion = ServerDataModel.RowVersion.Increment(); // Delete the record in the ADO database. equityTypeRow[equityTypeTable.RowVersionColumn] = rowVersion; adoTransaction.DataRows.Add(equityTypeRow); equityTypeRow.Delete(); // Archive the record in the SQL database. SqlCommand sqlCommand = new SqlCommand("update \"EquityType\" set \"IsArchived\" = 1 where \"EquityTypeCode\"=@equityTypeCode"); sqlCommand.Connection = sqlTransaction.Connection; sqlCommand.Transaction = sqlTransaction; sqlCommand.Parameters.Add(new SqlParameter("@equityTypeCode", SqlDbType.Int, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, equityTypeCode)); sqlCommand.ExecuteNonQuery(); }
/// <summary>Loads a EquityType record using Metadata Parameters.</summary> /// <param name="transaction">Contains the parameters and exceptions for this command.</param> public static void Load(ParameterList parameters) { // Accessor for the EquityType Table. ServerDataModel.EquityTypeDataTable equityTypeTable = ServerDataModel.EquityType; // Extract the parameters from the command batch. AdoTransaction adoTransaction = parameters["adoTransaction"]; SqlTransaction sqlTransaction = parameters["sqlTransaction"]; object configurationId = parameters["configurationId"].Value; int equityTypeCode = parameters["equityTypeCode"]; string description = parameters["description"]; object externalId0 = parameters["externalId0"].Value; object externalId1 = parameters["externalId1"].Value; object externalId2 = parameters["externalId2"].Value; object externalId3 = parameters["externalId3"].Value; // The row versioning is largely disabled for external operations. long rowVersion = long.MinValue; // Find the record using the unique identifier. If it doesn't exist, it will be inserted, if it does exist, // it will be updated. ServerDataModel.EquityTypeRow equityTypeRow = equityTypeTable.FindByEquityTypeCode(equityTypeCode); if ((equityTypeRow == null)) { // Call the internal 'Insert' method to complete the operation. MarkThree.Quasar.Core.EquityType.Insert(adoTransaction, sqlTransaction, ref rowVersion, equityTypeCode, description, externalId0, externalId1, externalId2, externalId3); } else { // This will bypass the optimistic concurrency checking required by the internal method. rowVersion = ((long)(equityTypeRow[equityTypeTable.RowVersionColumn])); // Call the internal 'Update' method to complete the operation. MarkThree.Quasar.Core.EquityType.Update(adoTransaction, sqlTransaction, ref rowVersion, equityTypeCode, description, externalId0, externalId1, externalId2, externalId3); } // Return values parameters["rowVersion"] = rowVersion; }
/// <summary>Archives a EquityType record using Metadata Parameters.</summary> /// <param name="transaction">Contains the parameters and exceptions for this command.</param> public static void Archive(ParameterList parameters) { // Accessor for the EquityType Table. ServerDataModel.EquityTypeDataTable equityTypeTable = ServerDataModel.EquityType; // Extract the parameters from the command batch. AdoTransaction adoTransaction = parameters["adoTransaction"]; SqlTransaction sqlTransaction = parameters["sqlTransaction"]; object configurationId = parameters["configurationId"].Value; int equityTypeCode = parameters["equityTypeCode"]; // The row versioning is largely disabled for external operations. long rowVersion = long.MinValue; // While the optimistic concurrency checking is disabled for the external methods, the internal methods // still need to perform the check. This ncurrency checking logic by finding the current row version to be // will bypass the coused when the internal method is called. ServerDataModel.EquityTypeRow equityTypeRow = equityTypeTable.FindByEquityTypeCode(equityTypeCode); rowVersion = ((long)(equityTypeRow[equityTypeTable.RowVersionColumn])); // Call the internal method to complete the operation. MarkThree.Quasar.Core.EquityType.Archive(adoTransaction, sqlTransaction, rowVersion, equityTypeCode); }
/// <summary>Updates a EquityType record using Metadata Parameters.</summary> /// <param name="transaction">Contains the parameters and exceptions for this command.</param> public static void Update(ParameterList parameters) { // Accessor for the EquityType Table. ServerDataModel.EquityTypeDataTable equityTypeTable = ServerDataModel.EquityType; // Extract the parameters from the command batch. AdoTransaction adoTransaction = parameters["adoTransaction"]; SqlTransaction sqlTransaction = parameters["sqlTransaction"]; object configurationId = parameters["configurationId"].Value; string externalEquityTypeCode = parameters["equityTypeCode"]; object description = parameters["description"].Value; // The row versioning is largely disabled for external operations. long rowVersion = long.MinValue; // Resolve External Identifiers int equityTypeCode = EquityType.FindRequiredKey(configurationId, "equityTypeCode", externalEquityTypeCode); // This will bypass the internal optimistic concurrency checking by providing the current rowVersion to the // internal method. ServerDataModel.EquityTypeRow equityTypeRow = equityTypeTable.FindByEquityTypeCode(equityTypeCode); rowVersion = ((long)(equityTypeRow[equityTypeTable.RowVersionColumn])); // Call the internal method to complete the operation. MarkThree.Quasar.Core.EquityType.Update(adoTransaction, sqlTransaction, ref rowVersion, equityTypeCode, description, null, null, null, null); // Return values. parameters["rowVersion"] = rowVersion; }
/// <summary>Updates a EquityType record.</summary> /// <param name="transaction">Commits or rejects a set of commands as a unit</param> /// <param name="rowVersion">The version number of the row</param> /// <param name="equityTypeCode">The value for the EquityTypeCode column.</param> /// <param name="description">The value for the Description column.</param> /// <param name="externalId0">The value for the ExternalId0 column.</param> /// <param name="externalId1">The value for the ExternalId1 column.</param> /// <param name="externalId2">The value for the ExternalId2 column.</param> /// <param name="externalId3">The value for the ExternalId3 column.</param> public static void Update(AdoTransaction adoTransaction, SqlTransaction sqlTransaction, ref long rowVersion, int equityTypeCode, object description, object externalId0, object externalId1, object externalId2, object externalId3) { // Accessor for the EquityType Table. ServerDataModel.EquityTypeDataTable equityTypeTable = ServerDataModel.EquityType; // Rule #1: Make sure the record exists before updating it. ServerDataModel.EquityTypeRow equityTypeRow = equityTypeTable.FindByEquityTypeCode(equityTypeCode); if ((equityTypeRow == null)) { throw new Exception(string.Format("The EquityType table does not have an element identified by {0}", equityTypeCode)); } // Rule #2: Optimistic Concurrency Check if ((equityTypeRow.RowVersion != rowVersion)) { throw new System.Exception("This record is busy. Please try again later."); } // Apply Defaults if ((description == null)) { description = equityTypeRow[equityTypeTable.DescriptionColumn]; } if ((externalId0 == null)) { externalId0 = equityTypeRow[equityTypeTable.ExternalId0Column]; } if ((externalId1 == null)) { externalId1 = equityTypeRow[equityTypeTable.ExternalId1Column]; } if ((externalId2 == null)) { externalId2 = equityTypeRow[equityTypeTable.ExternalId2Column]; } if ((externalId3 == null)) { externalId3 = equityTypeRow[equityTypeTable.ExternalId3Column]; } // Increment the row version rowVersion = ServerDataModel.RowVersion.Increment(); // Update the record in the ADO database. equityTypeRow[equityTypeTable.RowVersionColumn] = rowVersion; equityTypeRow[equityTypeTable.DescriptionColumn] = description; equityTypeRow[equityTypeTable.ExternalId0Column] = externalId0; equityTypeRow[equityTypeTable.ExternalId1Column] = externalId1; equityTypeRow[equityTypeTable.ExternalId2Column] = externalId2; equityTypeRow[equityTypeTable.ExternalId3Column] = externalId3; adoTransaction.DataRows.Add(equityTypeRow); // Update the record in the SQL database. SqlCommand sqlCommand = new SqlCommand("update \"EquityType\" set \"RowVersion\"=@rowVersion,\"Description\"=@description,\"Exte" + "rnalId0\"=@externalId0,\"ExternalId1\"=@externalId1,\"ExternalId2\"=@externalId2,\"Ext" + "ernalId3\"=@externalId3 where \"EquityTypeCode\"=@equityTypeCode"); sqlCommand.Connection = sqlTransaction.Connection; sqlCommand.Transaction = sqlTransaction; sqlCommand.Parameters.Add(new SqlParameter("@rowVersion", SqlDbType.BigInt, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, rowVersion)); sqlCommand.Parameters.Add(new SqlParameter("@equityTypeCode", SqlDbType.Int, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, equityTypeCode)); sqlCommand.Parameters.Add(new SqlParameter("@description", SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, description)); sqlCommand.Parameters.Add(new SqlParameter("@externalId0", SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, externalId0)); sqlCommand.Parameters.Add(new SqlParameter("@externalId1", SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, externalId1)); sqlCommand.Parameters.Add(new SqlParameter("@externalId2", SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, externalId2)); sqlCommand.Parameters.Add(new SqlParameter("@externalId3", SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, externalId3)); // Update the record in the SQL database. sqlCommand.ExecuteNonQuery(); }