@Override
public ArrayList<ClientSection> getAllSectionList() {
ArrayList<ClientSection> resultList = new ArrayList<ClientSection>();
for (Section section:sectionFactory.getAllSectionList()) {
resultList.add(new ClientSection(section.getSectionNo(),section.getChapterNo(),section.getStartVerse(),section.getEndVerse()));
}
return resultList;
}