Beispiel #1
0
 public Padrinho(string nome, Comunidade comunidade, string telefone, string celular)
 {
     this.Id         = Guid.NewGuid();
     this.Nome       = nome;
     this.Comunidade = comunidade;
     this.Telefone   = telefone;
     this.Celular    = celular;
 }
Beispiel #2
0
 public Crianca(string nome, string idade, Sexo sexo, Comunidade comunidade, Responsavel responsavel, bool impresso, bool especial)
 {
     this.Id          = Guid.NewGuid();
     this.Nome        = nome;
     this.Idade       = idade;
     this.Sexo        = sexo;
     this.Comunidade  = comunidade;
     this.Responsavel = responsavel;
     this.Impresso    = impresso;
     this.Especial    = especial;
 }