コード例 #1
0
 private void OnEntryDone(IExecutionReport executionReport)
 {
     _rfqUpdateSubject.OnNext(new RfqUpdate(RfqState.Done, null, executionReport));
 }
コード例 #2
0
ファイル: Rfq.cs プロジェクト: Goochie/RfqStateMachine
 private void OnEntryDone(IExecutionReport executionReport)
 {
     _rfqUpdateSubject.OnNext(new RfqUpdate(RfqState.Done, null, executionReport));
 }
コード例 #3
0
ファイル: RfqUpdate.cs プロジェクト: valmac/RfqStateMachine
 public RfqUpdate(RfqState rfqState, IQuote quote, IExecutionReport executionReport)
 {
     RfqState        = rfqState;
     Quote           = quote;
     ExecutionReport = executionReport;
 }
コード例 #4
0
ファイル: RfqUpdate.cs プロジェクト: Goochie/RfqStateMachine
 public RfqUpdate(RfqState rfqState, IQuote quote, IExecutionReport executionReport)
 {
     RfqState = rfqState;
     Quote = quote;
     ExecutionReport = executionReport;
 }