Ejemplo n.º 1
0
 public FundViewModel(IEventAggregator aggregator, IFundService fundService, IStockConverter stockConverter)
     : base(aggregator)
 {
     _fundService    = fundService;
     _stockConverter = stockConverter;
     EventAggregator.GetEvent <FundChangedEvent>().Subscribe(OnFundChanged, false);
 }