protected AddOrderRelationCommandBase(Order closeOrder, AddOrderRelationCommandVisitorBase visitor, IAddOrderRelationCommandService commandService)
 {
     _closeOrder  = closeOrder;
     _visitor     = visitor;
     _service     = commandService;
     this.Account = _closeOrder.Owner.Owner;
 }
Esempio n. 2
0
 protected AddBookOrderRelationCommandBase(Order closeOrder, IAddOrderRelationCommandService commandService, Protocal.OrderRelationBookData orderRelationData)
     : base(closeOrder, Visitors.AddBookOrderRelationCommandVisitor.Default, commandService, orderRelationData)
 {
 }
Esempio n. 3
0
 protected OrderRelationCommunicationCommandBase(Order closeOrder, Visitors.AddCommunicationOrderRelaitonVistorBase visitor, IAddOrderRelationCommandService commandService, Protocal.OrderRelationData orderRelationData)
     : base(closeOrder, visitor, commandService)
 {
     this.OrderRelationData = orderRelationData;
 }
 protected AddDataRowOrderRelationCommandBase(Order closeOrder, IAddOrderRelationCommandService commandService, IDBRow dr)
     : base(closeOrder, Visitors.AddDataRowFormatOrderRelationCommandVisitor.Default, commandService)
 {
     this.DataRow = dr;
 }
 protected AddGeneralOrderRelationCommandBase(Order closeOrder, IAddOrderRelationCommandService commandService, Order openOrder, decimal closedLot)
     : base(closeOrder, Visitors.AddGeneralFormatOrderRelationCommandVisitor.Default, commandService)
 {
     this.OpenOrder = openOrder;
     this.ClosedLot = closedLot;
 }