Esempio n. 1
0
 public Igreja(string nome, string foto, Email email, Telefone telefone, IgrejaEndereco endereco) : this()
 {
     this.Nome     = nome;
     this.Foto     = foto;
     this.Email    = email;
     this.Telefone = telefone;
     this.Endereco = endereco;
 }
Esempio n. 2
0
 private Igreja()
 {
     this.Nome     = null;
     this.Foto     = null;
     this.Email    = null;
     this.Telefone = null;
     this.Endereco = null;
 }
Esempio n. 3
0
 public static Igreja Create(string nome, string foto, Email email, Telefone telefone, IgrejaEndereco endereco)
 {
     return(new Igreja(nome, foto, email, telefone, endereco));
 }