Exemplo n.º 1
0
 public Pessoa(Guid aggregateId, string nome, EPessoaTipo tipo) : this()
 {
     AggregateId = aggregateId;
     Nome        = nome;
     TipoId      = (int)tipo;
     DataCriacao = DateTime.Now;
     Ativo       = true;
 }
Exemplo n.º 2
0
 public Pessoa(Guid aggregateId, string nome, EPessoaTipo tipo, Endereco endereco) : this(aggregateId, nome, tipo)
 {
     Endereco = endereco;
 }