FastQuant.AccountDataEntry.AccountDataEntry C# (CSharp) Метод

AccountDataEntry() приватный Метод

private AccountDataEntry ( string account, AccountData values, AccountData positions, AccountData orders ) : System
account string
values AccountData
positions AccountData
orders AccountData
Результат System
        internal AccountDataEntry(string account, AccountData values, AccountData[] positions, AccountData[] orders)
        {
            Account = account;
            Values = values;
            Positions = positions;
            Orders = orders;
        }
    }
AccountDataEntry