public Collection<Client> getClients() throws ElementNotFoundException, NotEnoughRightsException, DmsException, InstantiationException, IllegalAccessException {
AtrilSession oSes = DAO.getAdminSession("CaptureInvoice");
CustomerAccount oAcc = new CustomerAccount(oSes.getDms().getDocument(getSessionAttribute("customer_account_docid")));
Collection<Client> clients = oAcc.clients(oSes).list(oSes);
oSes.disconnect();
oSes.close();
return clients;
}
@Override