Codigo Fonte De Uma Aplicação Em C#
Dissertações: Codigo Fonte De Uma Aplicação Em C#. Pesquise 861.000+ trabalhos acadêmicosPor: caioplago • 5/11/2013 • 631 Palavras (3 Páginas) • 456 Visualizações
CODIGO FONTE DA APLICAÇÃO
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LOCADLIVRO
{
public class Cliente : ModeloCrud
{
public int ID { get; set; }
public string Nome { get; set; }
public string Endereco { get; set; }
public string Bairro { get; set; }
public string Cidade { get; set; }
public string Estado { get; set; }
public string Cpf { get; set; }
public Livro LivroCliente { get; set; }
public Cliente()
{
conexao = new Connection();
}
public override string[] incluir()
{
StringBuilder insert = new StringBuilder();
string comandoInsert;
insert.AppendLine("INSERT INTO Cliente(ID, NOME,
ENDERECO, BAIRRO, CIDADE, ESTADO, CPF)");
insert.AppendLine(" VALUES
(@ID, '@NOME', '@ENDERECO', '@BAIRRO', '@CIDADE', '@ESTADO', '@CPF' )");
comandoInsert = insert.ToString().Replace("@ID", ID.ToString());
comandoInsert = comandoInsert.Replace("@NOME", Nome);
comandoInsert = comandoInsert.Replace("@ENDERECO", Endereco);
comandoInsert = comandoInsert.Replace("@BAIRRO", Bairro);
comandoInsert = comandoInsert.Replace("@CIDADE", Cidade);
comandoInsert = comandoInsert.Replace("@ESTADO", Estado);
comandoInsert = comandoInsert.Replace("@CPF", Cpf);
conexao.AbrirConexao();
conexao.ExecutarComando(comandoInsert);
conexao.FecharConexao();
return null;
}
public override string[] alterar()
{
string update;
update = "UPDATE Cliente SET NOME = '@NOME', ENDERECO = '@ENDERECO',
BAIRRO = '@BAIRRO', CIDADE = '@CIDADE', ESTADO = '@ESTADO', CPF = '@CPF'";
update = update + " WHERE ID = @ID";
update = update.Replace("@NOME", Nome);
update = update.Replace("@ENDERECO", Endereco);
update = update.Replace("@BAIRRO", Bairro);
update = update.Replace("@CIDADE", Cidade);
update = update.Replace("@ESTADO", Estado);
update = update.Replace("@CPF", Cpf);
update = update.Replace("@ID", ID.ToString());
conexao.AbrirConexao();
conexao.ExecutarComando(update);
conexao.FecharConexao();
return null;
}
public override string[] excluir()
{
string excluir;
excluir = "DELETE FROM Cliente";
excluir = excluir + " WHERE ID = @ID";
excluir = excluir.Replace("@ID", ID.ToString());
conexao.AbrirConexao();
conexao.ExecutarComando(excluir);
conexao.FecharConexao();
return null;
}
public override void recuperar()
{
}
public override string[] validar()
{
List<string> mensagens = new List<string>();
if (LivroCliente == null)
{
mensagens.Add("Livro não disponivel para este cliente.");
return mensagens.ToArray();
}
return null;
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LOCADLIVRO
{
public class Livro : ModeloCrud
{
public int ID { get; set; }
public string Titulo { get; set; }
public string
...