private void Modify()
        {
            var v = new GroupView();

            v.DataContext = ItemSelected;
            this.App.AddLog(string.Format("Thay đổi nhóm {0}", this.ItemSelected.Name), true);

            var cg = this.ItemSelected.GroupObj.CloneJson();

            if (ModalDialog.ShowControl(v, "Sửa nhóm") == true)
            {
                _service.SaveContactGroup(ItemSelected.GroupObj);
                this.App.AddLog("Lưu thay đổi nhóm thành công", true);
                this.ItemSelected.RefeshDetails();
            }
            else
            {
                ItemSelected.LoadContactGroup(cg);
                this.App.AddLog("Hủy thay đổi nhóm", true);
            }
        }