public Cliente getClienteByCode(Integer cli_codigo) throws Exception { return clientedao.getCliente(cli_codigo); }
public void deleteCliente(Cliente cliente) throws Exception { clientedao.deleteCliente(cliente); }
public void addCliente(Cliente cliente) throws Exception { clientedao.addCliente(cliente); }