public TestEntity(NomeValueObject nome, EmailValueObject email)
        {
            Nome  = nome;
            Email = email;

            Validate();

            Ativo = false;
        }
 public TestEntity(Guid id, NomeValueObject nome, EmailValueObject email)
     : this(nome, email)
 {
     Id = id;
 }