Example #1
0
        public SAL.DataContainers.AccountSettings GetAccountSettings(SAL.DataContainers.AccountId id)
        {
            SAL.DataContainers.AccountSettings accSettings = new SAL.DataContainers.AccountSettings();

            try
            {
                AccountSettingsClient client = new AccountSettingsClient();

                AccountId wcfAccId = new AccountId();
                wcfAccId.ClearingId = id.ClearingId;

                AccountSettings wcfAccSet = client.GetAccountSettings(wcfAccId);
                accSettings.Id = new SAL.DataContainers.AccountId();

                accSettings.Id.ClearingId = wcfAccSet.Id.ClearingId;

                accSettings.Name        = wcfAccSet.Name;
                accSettings.Address     = wcfAccSet.Address;
                accSettings.BuyingPower = wcfAccSet.BuyingPower;
            }
            catch (Exception ex)
            {
                Trace.WriteLine(ex.ToString());
            }

            return(accSettings);
        }
Example #2
0
        public void SetAccountBuyingPower(SAL.DataContainers.AccountId id, decimal bp)
        {
            try
            {
                AccountSettingsClient client = new AccountSettingsClient();

                AccountId wcfAccId = new AccountId();
                wcfAccId.ClearingId = id.ClearingId;

                client.SetAccountBuyingPower(wcfAccId, bp);
            }
            catch (Exception ex)
            {
                Trace.WriteLine(ex.ToString());
            }
        }