public QuotationManager()
 {
     this._ConfigMetadata = new ConfigMetadata();
     this._SourceController = new SourceController();
     this._LastQuotationManager = new LastQuotationManager();
 }
 public AbnormalQuotationManager(Dictionary<int, PriceRangeCheckRule> rangeCheckRules, LastQuotationManager lastQuotationManager)
 {
     this._PriceRangeCheckRules = rangeCheckRules;
     this._LastQuotationManager = lastQuotationManager;
     this._Timer = new Timer(this.CheckTimeout);
 }
 public DerivativeController(Dictionary<int, DerivativeRelation> derivativeRelations, LastQuotationManager lastQuotationManager)
 {
     this._DerivativeRelations = derivativeRelations;
     this._LastQuotationManager = lastQuotationManager;
 }