public BalanceController(IBalanceQueryService balanceQueryService, IApiKeyInfoAccess apiKeyInfoAccess)
 {
     _balanceQueryService = balanceQueryService;
     _apiKeyInfoAccess    = apiKeyInfoAccess;
 }
 /// <summary>
 /// Default Constructor
 /// </summary>
 public OrderController(IOrderApplicationService orderApplicationService, IOrderQueryService orderQueryService, IApiKeyInfoAccess apiKeyInfoAccess)
 {
     _orderApplicationService = orderApplicationService;
     _orderQueryService       = orderQueryService;
     _apiKeyInfoAccess        = apiKeyInfoAccess;
 }
 /// <summary>
 /// Default Constructor
 /// </summary>
 /// <param name="depositApplicationService"></param>
 /// <param name="apiKeyInfoAccess"></param>
 public DepositController(IDepositApplicationService depositApplicationService, IApiKeyInfoAccess apiKeyInfoAccess)
 {
     _depositApplicationService = depositApplicationService;
     _apiKeyInfoAccess          = apiKeyInfoAccess;
 }
示例#4
0
 /// <summary>
 /// Defautl Constructor
 /// </summary>
 /// <param name="ledgerQueryService"></param>
 /// <param name="apiKeyInfoAccess"></param>
 public LedgerController(ILedgerQueryService ledgerQueryService, IApiKeyInfoAccess apiKeyInfoAccess)
 {
     _ledgerQueryService = ledgerQueryService;
     _apiKeyInfoAccess   = apiKeyInfoAccess;
 }
 /// <summary>
 /// Default Constructor
 /// </summary>
 /// <param name="withdrawApplicationService"></param>
 /// <param name="apiKeyInfoAccess"></param>
 public WithdrawController(IWithdrawApplicationService withdrawApplicationService, IApiKeyInfoAccess apiKeyInfoAccess)
 {
     _withdrawApplicationService = withdrawApplicationService;
     _apiKeyInfoAccess           = apiKeyInfoAccess;
 }
 public TradeController(ITradeApplicationService tradeApplicationService, IApiKeyInfoAccess apiKeyInfoAccess)
 {
     _tradeApplicationService = tradeApplicationService;
     _apiKeyInfoAccess        = apiKeyInfoAccess;
 }