public List <Model.Cliente> SelectByIdCliente(int idCliente) { DAL.Cliente dalCli = new DAL.Cliente(); //regras de negocios serao inseridas posteriormente return(dalCli.SelectById(idCliente)); }
public List <Model.Cliente> SelectById(int id) { DAL.Cliente dalCli = new DAL.Cliente(); //regras de negócios. return(dalCli.SelectById(id)); }
public List <Model.Cliente> SelectById(int id) { DAL.Cliente dalCli = new DAL.Cliente(); return(dalCli.SelectById(id)); }
public List <MODEL.Cliente> SelectById(int idCli) { DAL.Cliente dalCli = new DAL.Cliente(); //regras negocio return(dalCli.SelectById(idCli)); }