コード例 #1
0
 public ManualAddClientCommand(IInputOutputModule ioModule, IHTTPRequestService httpRequestService)
 {
     this.ioModule           = ioModule;
     this.httpRequestService = httpRequestService;
 }
コード例 #2
0
 public UpdatePortfolioCommand(IInputOutputModule ioModule, IHTTPRequestService httpRequestService)
 {
     this.ioModule           = ioModule;
     this.httpRequestService = httpRequestService;
 }
コード例 #3
0
 public MakeDealCommand(IInputOutputModule ioModule, IHTTPRequestService httpRequestService, ICommandParser commandParser)
 {
     this.ioModule           = ioModule;
     this.httpRequestService = httpRequestService;
     this.commandParser      = commandParser;
 }
コード例 #4
0
 public GetBalanceCommand(IInputOutputModule ioModule, IHTTPRequestService httpRequestService)
 {
     this.ioModule           = ioModule;
     this.httpRequestService = httpRequestService;
 }
コード例 #5
0
 public GetTransactionsCommand(IInputOutputModule ioModule, IHTTPRequestService httpRequestService)
 {
     this.ioModule           = ioModule;
     this.httpRequestService = httpRequestService;
 }