C# 클래스 Controller.ControllerPessoa

파일 보기 프로젝트 열기: CristianoRC/SoftwareOrdemDeServico

공개 메소드들

메소드 설명
Carregar ( int id ) : Pessoa

Carregando informações do cliente.

Carregar ( string Nome ) : Pessoa

Carregando informações do cliente.

CarregarLista ( ) : DataTable

Retorna um DataTable com todas as informações de todos clientes

CarregarListaDeNomes ( ) : DataTable

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

비공개 메소드들

메소드 설명
PreencherCliente ( DataTable tabela ) : Pessoa

Preenchendo a classe Pessoa com as informações do DataTable

메소드 상세

Carregar() 공개 정적인 메소드

Carregando informações do cliente.
public static Carregar ( int id ) : Pessoa
id int
리턴 Pessoa

Carregar() 공개 정적인 메소드

Carregando informações do cliente.
public static Carregar ( string Nome ) : Pessoa
Nome string
리턴 Pessoa

CarregarLista() 공개 정적인 메소드

Retorna um DataTable com todas as informações de todos clientes
public static CarregarLista ( ) : DataTable
리턴 System.Data.DataTable

CarregarListaDeNomes() 공개 정적인 메소드

Carregando lista com nome de todos clientes
public static CarregarListaDeNomes ( ) : DataTable
리턴 System.Data.DataTable

Criar() 공개 정적인 메소드

Criando um nome Cliente
public static Criar ( Pessoa cliente ) : string
cliente Pessoa
리턴 string

Deletar() 공개 정적인 메소드

Excluindo cliente
public static Deletar ( string Nome ) : string
Nome string
리턴 string

Editar() 공개 정적인 메소드

Editando informações sobre um cliente ainda já criado.
public static Editar ( Pessoa cliente ) : string
cliente Pessoa
리턴 string

ObterEmail() 공개 정적인 메소드

Verifica o e-mail do cliente atravez do seu nome
public static ObterEmail ( string NomeDoCliente ) : string
NomeDoCliente string Nome do cliente.
리턴 string

VerificarExistencia() 공개 정적인 메소드

/Verificando a existencia do cliente
public static VerificarExistencia ( string Nome ) : bool
Nome string Nome.
리턴 bool

VerificarID() 공개 정적인 메소드

Retornando o ID do cliente atravez do nome
public static VerificarID ( string Nome ) : int
Nome string
리턴 int

VerificarNome() 공개 정적인 메소드

Retornando o nome atravez do ID
public static VerificarNome ( int id ) : string
id int
리턴 string