Exemple #1
0
 public void agregarTelefono(Telefono telefono)
 {
     Telefonos.Add(telefono);
 }
Exemple #2
0
        public void agregarTelefono(string numeroTelefono)
        {
            Telefono tel = new Telefono(numeroTelefono);

            agregarTelefono(tel);
        }