public Task InitializeAsync(SynchronizationContext synchronizationContext)
 {
     _areaTagCheckedListBoxService = Ioc.Container.GetInstance<IAreaTagCheckedListBoxService>();
     _areaTagCheckedListBoxService.FillAreaTagCheckedListBox(synchronizationContext, _cbAreaTags);
     _areaTagCheckedListBoxService.SetupEvents(_cbAreaTags);
     return Task.CompletedTask;
 }
 public SolutionListTreeViewService(IApplicationConfiguration applicationConfiguration, IApplicationStorageService applicationStorageService, IAreaTagCheckedListBoxService areaTagCheckedListBoxService, IActionService actionService)
 {
     _applicationStorageService    = applicationStorageService;
     _areaTagCheckedListBoxService = areaTagCheckedListBoxService;
     _actionService = actionService;
     _areaTagCheckedListBoxService.AreaTagCheckedListBoxCheckChanged += AreaTagCheckedListBoxService_AreaTagCheckedListBoxCheckChanged;
     _actionService.ActionRun     += ActionService_ActionRun;
     _actionService.ActionRefresh += ActionService_ActionRefresh;
 }