示例#1
0
 public OwnOrder(OwnOrderType type, long id, int price, int quantity)
 {
     this.Type     = type;
     this.Id       = id;
     this.Price    = price;
     this.Quantity = quantity;
 }
示例#2
0
 public OwnOrder(long id, int price)
 {
     this.Type     = OwnOrderType.None;
     this.Id       = id;
     this.Price    = price;
     this.Quantity = 0;
 }
示例#3
0
 public OwnOrder(OwnOrderType type, long id, int price, int quantity, object t)
 {
     this.Type        = type;
     this.Id          = id;
     this.Price       = price;
     this.Quantity    = quantity;
     this.Transaction = t;
 }
 public OwnOrder(long id, int price)
 {
   this.Type = OwnOrderType.None;
   this.Id = id;
   this.Price = price;
   this.Quantity = 0;
   this.Transaction = null;
 }
 public OwnOrder(OwnOrderType type, long id, int price, int quantity, object t)
 {
   this.Type = type;
   this.Id = id;
   this.Price = price;
   this.Quantity = quantity;
   this.Transaction = t;
 }