コード例 #1
0
 public static PessoaBuilder SetCPFCNPJ(this PessoaBuilder builder, string cpfcnpj)
 {
     builder.Actions.Add(p => { p.CPFCNPJ = cpfcnpj; });
     return(builder);
 }
コード例 #2
0
 public static PessoaBuilder SetTelefone(this PessoaBuilder builder, string telefone)
 {
     builder.Actions.Add(p => { p.Telefone = telefone; });
     return(builder);
 }