private void DeleteButtonCommandExecute()
 {
     if (!ContactViewInForm.Any())
     {
         return;
     }
     ContactViewInForm.RemoveAt(SelectedIndex);
 }