public CountyListSelectionViewModel(
     ILogService service,
     ICountyListBuilder countyListBuilder,
     string title,
     int columnCount) : base(service, countyListBuilder, title, columnCount)
 {
     CountySelected_Command = new DelegateCommand <object>(county => onCountySelection(county));
 }
 public CountyListViewModel(
     ILogService service,
     ICountyListBuilder countyListBuilder,
     string title,
     int columnCount) : base(service)
 {
     this.countyListBuilder = countyListBuilder;
     this.title             = title;
     this.columnCount       = columnCount;
     MessageSink.MessageBus.GetEvent <LogChangedNotification>().Subscribe(details => onLogChangedNotification(details));
     updateCountyList();
 }