Ejemplo n.º 1
0
 public static PessoaBuilder SetCPFCNPJ(this PessoaBuilder builder, string cpfcnpj)
 {
     builder.Actions.Add(p => { p.CPFCNPJ = cpfcnpj; });
     return(builder);
 }
Ejemplo n.º 2
0
 public static PessoaBuilder SetTelefone(this PessoaBuilder builder, string telefone)
 {
     builder.Actions.Add(p => { p.Telefone = telefone; });
     return(builder);
 }