4647484950515253
for (Product product : products) { IArticlesDto dto = oam.getIArticlesDto(product, arg0.isFullInfo(), email); articles.put(dto.getKeyHash(), dto); } LookForResult result = new LookForResult(articles); return result; }
18192021222324252627
private Provider<ArticlesOAM> provider; @Override public LookForResult execute(LookForAction arg0, ExecutionContext arg1) throws ActionException { LookForResult result = null; ArticlesOAM oam = provider.get(); result = new LookForResult(oam.getArticles(arg0, null)); return result; }