示例#1
0
 private void OnEntryDone(IExecutionReport executionReport)
 {
     _rfqUpdateSubject.OnNext(new RfqUpdate(RfqState.Done, null, executionReport));
 }
示例#2
0
 private void OnEntryDone(IExecutionReport executionReport)
 {
     _rfqUpdateSubject.OnNext(new RfqUpdate(RfqState.Done, null, executionReport));
 }
示例#3
0
 public RfqUpdate(RfqState rfqState, IQuote quote, IExecutionReport executionReport)
 {
     RfqState        = rfqState;
     Quote           = quote;
     ExecutionReport = executionReport;
 }
示例#4
0
 public RfqUpdate(RfqState rfqState, IQuote quote, IExecutionReport executionReport)
 {
     RfqState = rfqState;
     Quote = quote;
     ExecutionReport = executionReport;
 }