author | František Kučera <franta-hg@frantovo.cz> |
Sat Mar 13 23:51:43 2010 +0100 (2010-03-13) | |
changeset 66 | 048531e09c09 |
child 145 | 0efefbf5f8b6 |
permissions | -rw-r--r-- |
1 package cz.frantovo.nekurak.web;
3 import cz.frantovo.nekurak.dto.Podnik;
4 import java.util.Collection;
6 /**
7 *
8 * @author fiki
9 */
10 public class Uvod {
12 private HledacSluzby hledac = new HledacSluzby();
14 public Collection<Podnik> getPodniky() {
15 return hledac.getPodnikEJB().getPodniky();
16 }
17 }