public void CheckPhoneRemoved(List <Phone> listPhone, Guid idPerson)
        {
            var oldList = _repository.GetAllbyPerson(idPerson);

            foreach (var phone in oldList)
            {
                if (!listPhone.Contains(phone))
                {
                    _repository.Delete(phone);
                }
            }
        }