public void RemoveInstanceFromCurrentGroup(Instance instance)
        {
            if (SelectedGroup == null)
            {
                return;
            }

            try
            {
                _cache.RemoveInstanceFromGroup(instance, SelectedGroup);
            }
            catch (WebException e)
            {
                ShowPopupWebException(e);
            }
        }