private void DeleteCustomerRepair(DialogResult dialogResult)
 {
     if (dialogResult == DialogResult.Ok)
     {
         Task.Factory.StartNew(() =>
         {
             CustomerAction.DeleteCustomerRepairs(this.DBConnectionString, this.Entity.InternalList.Where(x => x.IsSelected));
             GetRefreshCustomerRepairCollection();
             this.ParentViewModel.ShowProgressBar = false;
         });
     }
     else
     {
         this.ParentViewModel.ShowProgressBar = false;
     }
 }