Exemple #1
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="consumerTrusts"></param>
        /// <returns></returns>
        public static MethodResponseErrorCode UpdateConsumerDebt(ConsumerDebt[] consumerDebts)
        {
            MethodResponseErrorCode response = null;
            // Update the database.
            TradingSupportClient tradingSupportClient = new TradingSupportClient(Guardian.Properties.Settings.Default.TradingSupportEndpoint);

            try
            {
                response = tradingSupportClient.UpdateConsumerDebt(consumerDebts);
            }
            catch (Exception exception)
            {
                // Any issues trying to communicate to the server are logged.
                EventLog.Error("{0}, {1}", exception.Message, exception.StackTrace);
            }
            finally
            {
                if (tradingSupportClient != null && tradingSupportClient.State == CommunicationState.Opened)
                {
                    tradingSupportClient.Close();
                }
            }
            return(response);
        }