public WhatsAppDecorator(string numeroWhatsApp,
                          string nomeContato,
                          Notificador notificador) : base(notificador)
 {
     NumeroWhatsApp = numeroWhatsApp;
     NomeContato    = nomeContato;
 }
Exemple #2
0
 public SmsDecorator(string numeroTelefone, Notificador notificador)
     : base(notificador)
 {
     NumeroTelefone = numeroTelefone;
 }