Method | Description | |
---|---|---|
Carregar ( int id ) : Pessoa |
Carregando informações do cliente.
|
|
Carregar ( string Nome ) : Pessoa |
Carregando informações do cliente.
|
|
CarregarLista ( ) : |
Retorna um DataTable com todas as informações de todos clientes
|
|
CarregarListaDeNomes ( ) : |
Carregando lista com nome de todos clientes
|
|
Criar ( Pessoa cliente ) : string |
Criando um nome Cliente
|
|
Deletar ( string Nome ) : string |
Excluindo cliente
|
|
Editar ( Pessoa cliente ) : string |
Editando informações sobre um cliente ainda já criado.
|
|
ObterEmail ( string NomeDoCliente ) : string |
Verifica o e-mail do cliente atravez do seu nome
|
|
VerificarExistencia ( string Nome ) : bool |
/Verificando a existencia do cliente
|
|
VerificarID ( string Nome ) : int |
Retornando o ID do cliente atravez do nome
|
|
VerificarNome ( int id ) : string |
Retornando o nome atravez do ID
|
Method | Description | |
---|---|---|
PreencherCliente ( |
Preenchendo a classe Pessoa com as informações do DataTable
|
public static Carregar ( string Nome ) : Pessoa | ||
Nome | string | |
return | Pessoa |
public static CarregarLista ( ) : |
||
return |
public static CarregarListaDeNomes ( ) : |
||
return |
public static Criar ( Pessoa cliente ) : string | ||
cliente | Pessoa | |
return | string |
public static Deletar ( string Nome ) : string | ||
Nome | string | |
return | string |
public static Editar ( Pessoa cliente ) : string | ||
cliente | Pessoa | |
return | string |
public static ObterEmail ( string NomeDoCliente ) : string | ||
NomeDoCliente | string | Nome do cliente. |
return | string |
public static VerificarExistencia ( string Nome ) : bool | ||
Nome | string | Nome. |
return | bool |
public static VerificarID ( string Nome ) : int | ||
Nome | string | |
return | int |
public static VerificarNome ( int id ) : string | ||
id | int | |
return | string |