コード例 #1
0
 /// <summary>Updates a BrokerAccount 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 BrokerAccount Table.
     ServerMarketData.BrokerAccountDataTable brokerAccountTable = ServerMarketData.BrokerAccount;
     // Extract the parameters from the command batch.
     AdoTransaction adoTransaction = parameters["adoTransaction"];
     SqlTransaction sqlTransaction = parameters["sqlTransaction"];
     object configurationId = parameters["configurationId"].Value;
     string externalBrokerAccountId = ((string)(parameters["brokerAccountId"]));
     object externalBrokerId = parameters["brokerId"].Value;
     object description = parameters["description"].Value;
     object mnemonic = parameters["mnemonic"].Value;
     object externalTraderId = parameters["traderId"].Value;
     // The row versioning is largely disabled for external operations.
     long rowVersion = long.MinValue;
     // Resolve External Identifiers
     int brokerAccountId = BrokerAccount.FindRequiredKey(configurationId, "brokerAccountId", externalBrokerAccountId);
     object brokerId = Broker.FindOptionalKey(configurationId, "brokerId", externalBrokerId);
     object traderId = Trader.FindOptionalKey(configurationId, "traderId", externalTraderId);
     // 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.
     ServerMarketData.BrokerAccountRow brokerAccountRow = brokerAccountTable.FindByBrokerAccountId(brokerAccountId);
     rowVersion = ((long)(brokerAccountRow[brokerAccountTable.RowVersionColumn]));
     // Call the internal method to complete the operation.
     MarkThree.Guardian.Core.BrokerAccount.Update(adoTransaction, sqlTransaction, ref rowVersion, brokerAccountId, brokerId, description, null, null, null, null, mnemonic, traderId);
     // Return values.
     parameters["rowVersion"] = rowVersion;
 }
コード例 #2
0
 /// <summary>Updates a Execution 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 Execution Table.
     ServerMarketData.ExecutionDataTable executionTable = ServerMarketData.Execution;
     // Extract the parameters from the command batch.
     AdoTransaction adoTransaction = parameters["adoTransaction"];
     SqlTransaction sqlTransaction = parameters["sqlTransaction"];
     object configurationId = parameters["configurationId"].Value;
     object accruedInterest = parameters["accruedInterest"].Value;
     object externalBrokerAccountId = parameters["brokerAccountId"].Value;
     object externalBrokerId = parameters["brokerId"].Value;
     object commission = parameters["commission"].Value;
     object createdTime = parameters["createdTime"].Value;
     object externalCreatedUserId = parameters["createdUserId"].Value;
     object externalDestinationOrderId = parameters["destinationOrderId"].Value;
     object externalDestinationStateCode = parameters["destinationStateCode"].Value;
     string externalExecutionId = ((string)(parameters["executionId"]));
     object executionPrice = parameters["executionPrice"].Value;
     object executionQuantity = parameters["executionQuantity"].Value;
     object fixMessageId = parameters["fixMessageId"].Value;
     object isHidden = parameters["isHidden"].Value;
     object modifiedTime = parameters["modifiedTime"].Value;
     object externalModifiedUserId = parameters["modifiedUserId"].Value;
     object originalDestinationOrderId = parameters["originalDestinationOrderId"].Value;
     object originalPrice = parameters["originalPrice"].Value;
     object originalQuantity = parameters["originalQuantity"].Value;
     object settlementDate = parameters["settlementDate"].Value;
     object sourceExecutionId = parameters["sourceExecutionId"].Value;
     object externalSourceStateCode = parameters["sourceStateCode"].Value;
     object tradeDate = parameters["tradeDate"].Value;
     object userFee0 = parameters["userFee0"].Value;
     object userFee1 = parameters["userFee1"].Value;
     object userFee2 = parameters["userFee2"].Value;
     object userFee3 = parameters["userFee3"].Value;
     // The row versioning is largely disabled for external operations.
     long rowVersion = long.MinValue;
     // Resolve External Identifiers
     object brokerAccountId = BrokerAccount.FindOptionalKey(configurationId, "brokerAccountId", externalBrokerAccountId);
     object brokerId = Broker.FindOptionalKey(configurationId, "brokerId", externalBrokerId);
     object createdUserId = User.FindOptionalKey(configurationId, "createdUserId", externalCreatedUserId);
     object destinationOrderId = DestinationOrder.FindOptionalKey(configurationId, "destinationOrderId", externalDestinationOrderId);
     object destinationStateCode = State.FindOptionalKey(configurationId, "destinationStateCode", externalDestinationStateCode);
     int executionId = Execution.FindRequiredKey(configurationId, "executionId", externalExecutionId);
     object modifiedUserId = User.FindOptionalKey(configurationId, "modifiedUserId", externalModifiedUserId);
     object sourceStateCode = State.FindOptionalKey(configurationId, "sourceStateCode", externalSourceStateCode);
     // 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.
     ServerMarketData.ExecutionRow executionRow = executionTable.FindByExecutionId(executionId);
     rowVersion = ((long)(executionRow[executionTable.RowVersionColumn]));
     // Call the internal method to complete the operation.
     MarkThree.Guardian.Core.Execution.Update(adoTransaction, sqlTransaction, ref rowVersion, accruedInterest, brokerAccountId, brokerId, commission, createdTime, createdUserId, destinationOrderId, destinationStateCode, executionId, executionPrice, executionQuantity, null, fixMessageId, isHidden, modifiedTime, modifiedUserId, originalDestinationOrderId, originalPrice, originalQuantity, settlementDate, sourceExecutionId, sourceStateCode, tradeDate, userFee0, userFee1, userFee2, userFee3);
     // Return values.
     parameters["rowVersion"] = rowVersion;
 }
コード例 #3
0
 /// <summary>Finds a a BrokerAccount record using a configuration and an external identifier.</summary>
 /// <param name="configurationId">Specified which mappings (user id columns) to use when looking up external identifiers.</param>
 /// <param name="externalId">The external identifier for the record.</param>
 public static int FindRequiredKey(object configurationId, string parameterId, string externalId)
 {
     // Look up the internal identifier using the configuration to select the ExternalId column and the external identifier to identify the record
     int internalId = BrokerAccount.FindKey(configurationId, parameterId, externalId);
     if ((internalId == int.MinValue))
     {
         throw new Exception(string.Format("The BrokerAccount table does not have a record identified by \'{0}\'", externalId));
     }
     // Return the internal identifier.
     return internalId;
 }
コード例 #4
0
 /// <summary>Loads a BrokerAccount 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 BrokerAccount Table.
     ServerMarketData.BrokerAccountDataTable brokerAccountTable = ServerMarketData.BrokerAccount;
     // Extract the parameters from the command batch.
     AdoTransaction adoTransaction = parameters["adoTransaction"];
     SqlTransaction sqlTransaction = parameters["sqlTransaction"];
     object configurationId = parameters["configurationId"].Value;
     object externalBrokerAccountId = parameters["brokerAccountId"].Value;
     string externalBrokerId = parameters["brokerId"];
     string description = parameters["description"];
     object externalId0 = parameters["externalId0"].Value;
     object externalId1 = parameters["externalId1"].Value;
     object externalId2 = parameters["externalId2"].Value;
     object externalId3 = parameters["externalId3"].Value;
     string mnemonic = parameters["mnemonic"];
     string externalTraderId = parameters["traderId"];
     // The row versioning is largely disabled for external operations.  The value is returned to the caller in the
     // event it's needed for operations within the batch.
     long rowVersion = long.MinValue;
     // Resolve External Identifiers
     int brokerAccountId = BrokerAccount.FindKey(configurationId, "brokerAccountId", externalBrokerAccountId);
     int brokerId = Broker.FindRequiredKey(configurationId, "brokerId", externalBrokerId);
     int traderId = Trader.FindRequiredKey(configurationId, "traderId", externalTraderId);
     // The load operation will create a record if it doesn't exist, or update an existing record.  The external
     // identifier is used to determine if a record exists with the same key.
     if ((brokerAccountId == int.MinValue))
     {
         // Populate the 'externalId' varaibles so that the external identifier can be used to find the row when an
         // external method is called with the same 'configurationId' parameter.
         int externalKeyIndex = BrokerAccount.GetExternalKeyIndex(configurationId, "brokerAccountId");
         object[] externalIdArray = new object[4];
         externalIdArray[externalKeyIndex] = externalBrokerAccountId;
         externalId0 = externalIdArray[0];
         externalId1 = externalIdArray[1];
         externalId2 = externalIdArray[2];
         externalId3 = externalIdArray[3];
         // Call the internal method to complete the operation.
         MarkThree.Guardian.Core.BrokerAccount.Insert(adoTransaction, sqlTransaction, ref rowVersion, brokerId, description, externalId0, externalId1, externalId2, externalId3, mnemonic, traderId);
     }
     else
     {
         // 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.
         ServerMarketData.BrokerAccountRow brokerAccountRow = brokerAccountTable.FindByBrokerAccountId(brokerAccountId);
         rowVersion = ((long)(brokerAccountRow[brokerAccountTable.RowVersionColumn]));
         // Call the internal method to complete the operation.
         MarkThree.Guardian.Core.BrokerAccount.Update(adoTransaction, sqlTransaction, ref rowVersion, brokerAccountId, brokerId, description, externalId0, externalId1, externalId2, externalId3, mnemonic, traderId);
     }
     // Return values.
     parameters["rowVersion"] = rowVersion;
 }
コード例 #5
0
 /// <summary>Finds a a BrokerAccount record using a configuration and an external identifier.</summary>
 /// <param name="configurationId">Specified which mappings (user id columns) to use when looking up external identifiers.</param>
 /// <param name="externalId">The external (user supplied) identifier for the record.</param>
 public static object FindOptionalKey(object configurationId, string parameterId, object externalId)
 {
     // Look up the internal identifier using the the configuration to specify which ExternalId column to use as an index.
     object internalId = null;
     if ((externalId != null))
     {
         internalId = BrokerAccount.FindKey(configurationId, parameterId, ((string)(externalId)));
         if ((((int)(internalId)) == int.MinValue))
         {
             throw new Exception(string.Format("The BrokerAccount table does not have a record identified by \'{0}\'", externalId));
         }
     }
     // Return the internal identifier.
     return internalId;
 }
コード例 #6
0
 /// <summary>Finds a a BrokerAccount record using a configuration and an external identifier.</summary>
 /// <param name="configurationId">Specified which mappings (user id columns) to use when looking up external identifiers.</param>
 /// <param name="parameterId">The name of the parameter as specified in the configuration table.</param>
 /// <param name="externalId">The external (user supplied) identifier for the record.</param>
 public static int FindKey(object configurationId, string parameterId, object externalId)
 {
     // A missing key will never match a column.
     if ((externalId == null))
     {
         return int.MinValue;
     }
     // Accessor for the BrokerAccount Table.
     ServerMarketData.BrokerAccountDataTable brokerAccountTable = ServerMarketData.BrokerAccount;
     // Look for the record using the external identifier.  The configuration selected the key to use, which effectively
     // selected the external id column to use for the search.  If a record is found in the view, a translation still needs
     // to be made back to the original table before an index to the record can be returned to the caller.
     int externalKeyIndex = BrokerAccount.GetExternalKeyIndex(configurationId, parameterId);
     System.Data.DataView externalKeyView = BrokerAccount.externalKeyArray[externalKeyIndex];
     int recordIndex = externalKeyView.Find(new object[] {
                 externalId});
     if ((recordIndex == -1))
     {
         return int.MinValue;
     }
     return ((int)(externalKeyView[recordIndex].Row[brokerAccountTable.BrokerAccountIdColumn]));
 }
コード例 #7
0
 /// <summary>Archives a BrokerAccount 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 BrokerAccount Table.
     ServerMarketData.BrokerAccountDataTable brokerAccountTable = ServerMarketData.BrokerAccount;
     // Extract the parameters from the command batch.
     AdoTransaction adoTransaction = parameters["adoTransaction"];
     SqlTransaction sqlTransaction = parameters["sqlTransaction"];
     object configurationId = parameters["configurationId"].Value;
     string externalBrokerAccountId = parameters["brokerAccountId"];
     // The row versioning is largely disabled for external operations.
     long rowVersion = long.MinValue;
     // Find the internal identifier using the primar key elements.
     // identifier is used to determine if a record exists with the same key.
     int brokerAccountId = BrokerAccount.FindRequiredKey(configurationId, "brokerAccountId", externalBrokerAccountId);
     // 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.
     ServerMarketData.BrokerAccountRow brokerAccountRow = brokerAccountTable.FindByBrokerAccountId(brokerAccountId);
     rowVersion = ((long)(brokerAccountRow[brokerAccountTable.RowVersionColumn]));
     // Call the internal method to complete the operation.
     MarkThree.Guardian.Core.BrokerAccount.Archive(adoTransaction, sqlTransaction, rowVersion, brokerAccountId);
 }
コード例 #8
0
 /// <summary>Loads a Execution 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 Execution Table.
     ServerMarketData.ExecutionDataTable executionTable = ServerMarketData.Execution;
     // Extract the parameters from the command batch.
     AdoTransaction adoTransaction = parameters["adoTransaction"];
     SqlTransaction sqlTransaction = parameters["sqlTransaction"];
     object configurationId = parameters["configurationId"].Value;
     object accruedInterest = parameters["accruedInterest"].Value;
     object externalBrokerAccountId = parameters["brokerAccountId"].Value;
     object externalBrokerId = parameters["brokerId"].Value;
     object commission = parameters["commission"].Value;
     object createdTime = parameters["createdTime"].Value;
     object externalCreatedUserId = parameters["createdUserId"].Value;
     string externalDestinationOrderId = parameters["destinationOrderId"];
     string externalDestinationStateCode = parameters["destinationStateCode"];
     object externalExecutionId = parameters["executionId"].Value;
     decimal executionPrice = parameters["executionPrice"];
     decimal executionQuantity = parameters["executionQuantity"];
     object externalId0 = parameters["externalId0"].Value;
     object fixMessageId = parameters["fixMessageId"].Value;
     object isHidden = parameters["isHidden"].Value;
     object modifiedTime = parameters["modifiedTime"].Value;
     object externalModifiedUserId = parameters["modifiedUserId"].Value;
     object originalDestinationOrderId = parameters["originalDestinationOrderId"].Value;
     object originalPrice = parameters["originalPrice"].Value;
     object originalQuantity = parameters["originalQuantity"].Value;
     System.DateTime settlementDate = parameters["settlementDate"];
     object sourceExecutionId = parameters["sourceExecutionId"].Value;
     string externalSourceStateCode = parameters["sourceStateCode"];
     System.DateTime tradeDate = parameters["tradeDate"];
     object userFee0 = parameters["userFee0"].Value;
     object userFee1 = parameters["userFee1"].Value;
     object userFee2 = parameters["userFee2"].Value;
     object userFee3 = parameters["userFee3"].Value;
     // The row versioning is largely disabled for external operations.  The value is returned to the caller in the
     // event it's needed for operations within the batch.
     long rowVersion = long.MinValue;
     // Resolve External Identifiers
     object brokerAccountId = BrokerAccount.FindOptionalKey(configurationId, "brokerAccountId", externalBrokerAccountId);
     object brokerId = Broker.FindOptionalKey(configurationId, "brokerId", externalBrokerId);
     object createdUserId = User.FindOptionalKey(configurationId, "createdUserId", externalCreatedUserId);
     int destinationOrderId = DestinationOrder.FindRequiredKey(configurationId, "destinationOrderId", externalDestinationOrderId);
     int destinationStateCode = State.FindRequiredKey(configurationId, "destinationStateCode", externalDestinationStateCode);
     int executionId = Execution.FindKey(configurationId, "executionId", externalExecutionId);
     object modifiedUserId = User.FindOptionalKey(configurationId, "modifiedUserId", externalModifiedUserId);
     int sourceStateCode = State.FindRequiredKey(configurationId, "sourceStateCode", externalSourceStateCode);
     // The load operation will create a record if it doesn't exist, or update an existing record.  The external
     // identifier is used to determine if a record exists with the same key.
     if ((executionId == int.MinValue))
     {
         // Populate the 'externalId' varaibles so that the external identifier can be used to find the row when an
         // external method is called with the same 'configurationId' parameter.
         int externalKeyIndex = Execution.GetExternalKeyIndex(configurationId, "executionId");
         object[] externalIdArray = new object[1];
         externalIdArray[externalKeyIndex] = externalExecutionId;
         externalId0 = externalIdArray[0];
         // Call the internal method to complete the operation.
         MarkThree.Guardian.Core.Execution.Insert(adoTransaction, sqlTransaction, ref rowVersion, accruedInterest, brokerAccountId, brokerId, commission, createdTime, createdUserId, destinationOrderId, destinationStateCode, executionPrice, executionQuantity, externalId0, fixMessageId, isHidden, modifiedTime, modifiedUserId, originalDestinationOrderId, originalPrice, originalQuantity, settlementDate, sourceExecutionId, sourceStateCode, tradeDate, userFee0, userFee1, userFee2, userFee3);
     }
     else
     {
         // 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.
         ServerMarketData.ExecutionRow executionRow = executionTable.FindByExecutionId(executionId);
         rowVersion = ((long)(executionRow[executionTable.RowVersionColumn]));
         // Call the internal method to complete the operation.
         MarkThree.Guardian.Core.Execution.Update(adoTransaction, sqlTransaction, ref rowVersion, accruedInterest, brokerAccountId, brokerId, commission, createdTime, createdUserId, destinationOrderId, destinationStateCode, executionId, executionPrice, executionQuantity, externalId0, fixMessageId, isHidden, modifiedTime, modifiedUserId, originalDestinationOrderId, originalPrice, originalQuantity, settlementDate, sourceExecutionId, sourceStateCode, tradeDate, userFee0, userFee1, userFee2, userFee3);
     }
     // Return values.
     parameters["rowVersion"] = rowVersion;
 }