private void RemoveIndustry()
 {
     if (!Industries.Any(c => c.IsChecked))
     {
         return;
     }
     _dialogService.Show(
         "Question",
         "Are you sure you want to remove the selected industries?",
         DialogType.Question,
         true,
         true,
         r =>
     {
         if (r)
         {
             IsBusy = true;
             var requestDispatcher = _asyncRequestDispatcherFactory.CreateAsyncRequestDispatcher();
             foreach (var industry in Industries.Where(c => c.IsChecked))
             {
                 requestDispatcher.Add(Guid.NewGuid().ToString(), new RemoveIndustryRequest
                 {
                     Id = industry.Id
                 });
             }
             requestDispatcher.ProcessRequests(res => LoadIndustries(), e => IsBusy = false);
         }
     });
 }