private void OnEntryDone(IExecutionReport executionReport) { _rfqUpdateSubject.OnNext(new RfqUpdate(RfqState.Done, null, executionReport)); }
public RfqUpdate(RfqState rfqState, IQuote quote, IExecutionReport executionReport) { RfqState = rfqState; Quote = quote; ExecutionReport = executionReport; }