Esempio n. 1
0
 public OrderProcess(Options opts, int userId, int entityId)
 {
     order         = new Orders(opts, userId, entityId);
     market        = new DBMarket(opts, userId, entityId);
     history       = new DBTradeHistory(opts, userId, entityId);
     myOrder       = new DBMyOrder(opts, userId);
     this.opts     = opts;
     this.userId   = userId;
     this.entityId = entityId;
 }
Esempio n. 2
0
 public QuoteApiController(TradeHistoryDbContext thDBContext)
 {
     _thDBContext = thDBContext;
 }