private void OnDeleteContactConfirmMsg(DeleteContactConfirmMsg obj)
 {
     if (_selectedContact != null)
     {
         _logger.Info("delete selected contact");
         _database.Delete(_selectedContact);
         ReloadContacts();
     }
 }
 private void OnDeleteContactConfirmMsg(DeleteContactConfirmMsg obj)
 {
     if (_selectedContact != null)
     {
         _logger.Info("delete selected contact");
         _database.Delete(_selectedContact);
         ReloadContacts();
     }
 }