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