public List <Model.Cliente> SelectByIdCliente(int idCliente)
        {
            DAL.Cliente dalCli = new DAL.Cliente();

            //regras de negocios serao inseridas posteriormente

            return(dalCli.SelectById(idCliente));
        }
Exemplo n.º 2
0
 public List <Model.Cliente> SelectById(int id)
 {
     DAL.Cliente dalCli = new DAL.Cliente();
     //regras de negócios.
     return(dalCli.SelectById(id));
 }
Exemplo n.º 3
0
 public List <Model.Cliente> SelectById(int id)
 {
     DAL.Cliente dalCli = new DAL.Cliente();
     return(dalCli.SelectById(id));
 }
Exemplo n.º 4
0
 public List <MODEL.Cliente> SelectById(int idCli)
 {
     DAL.Cliente dalCli = new DAL.Cliente();
     //regras negocio
     return(dalCli.SelectById(idCli));
 }