public List <Model.Cliente> SelectByNome(string nome)
        {
            DAL.Cliente dalCli = new DAL.Cliente();

            //regras de negocios serao inseridas posteriormente

            return(dalCli.SelectByNome(nome));
        }
Exemplo n.º 2
0
 public List <Model.Cliente> SelectByNome(string nome)
 {
     DAL.Cliente dalCli = new DAL.Cliente();
     return(dalCli.SelectByNome(nome));
 }
Exemplo n.º 3
0
 public List <MODEL.Cliente> SelectByNome(string nome)
 {
     DAL.Cliente dalCli = new DAL.Cliente();
     //escrever regras de negocios
     return(dalCli.SelectByNome(nome));
 }
Exemplo n.º 4
0
 public List <MODEL.Cliente> SelectByNome(string nome)
 {
     DAL.Cliente dalCli = new DAL.Cliente();
     //regras negocio
     return(dalCli.SelectByNome(nome));
 }