@Override
public GroupVO getById(Long id) {
GroupEntity group = getDao().getGroupDao().getById(id);
if (group != null) {
GroupVO result = new GroupVO(group);
result.setUsers(UserVO.create(getDao().getUserDao().selectByGroup(
id)));
return result;
}
return null;
}