Beispiel #1
0
 public void RemoveContatoTelefonico()
 {
     ContatoTelefonicos.Remove(CurrentContatoTelefonico);
     CurrentContatoTelefonico = null;
     OnPropertyChanged();
     OnPropertyChanged("Entity");
 }
Beispiel #2
0
 public void AddContatoTelefonico()
 {
     CurrentContatoTelefonico = new PessoaTelefone()
     {
         Pessoa = Entity
     };
     ContatoTelefonicos.Add(CurrentContatoTelefonico);
     OnPropertyChanged("Entity");
 }