Example #1
0
        public void TestHandleFilterRemovedEventShouldUpdatePlots()
        {
            var @event = new FilterRemovedEvent(null);

            _service.Handle(@event);
            _mockTask.Verify(p => p.Execute(It.IsAny <UpdatePlotsCommand>()),
                             Times.Once());
        }
Example #2
0
 public void Handle(FilterRemovedEvent args)
 {
     OnPropertyChanged(() => FilterViewModels);
 }
Example #3
0
 public void Handle(FilterRemovedEvent args)
 {
     _commandBus.Execute(new UpdatePlotsCommand());
 }