Example #1
0
 public Portfaill(string id, BrokerAccountType tp)
 {
     Account_Id      = id;
     Account_Type    = tp;
     Stock_list      = new List <StockInfo>();
     Oblig_list      = new List <ObligInfo>();
     Currencies_list = new List <PortfolioCurrencies.PortfolioCurrency>();
 }
 public SandboxRegisterRequest(BrokerAccountType brokerAccountType)
 {
     BrokerAccountType = brokerAccountType;
 }
Example #3
0
 public Account(BrokerAccountType brokerAccountType, string brokerAccountId)
 {
     BrokerAccountType = brokerAccountType;
     BrokerAccountId   = brokerAccountId;
 }
Example #4
0
 public Account([JsonProperty("brokerAccountType")] BrokerAccountType accountType,
                [JsonProperty("brokerAccountId")] string accountId)
 {
     AccountId   = accountId;
     AccountType = accountType;
 }
Example #5
0
 public Account_m(BrokerAccountType brk, string id) : base(brk, id)
 {
 }