1 package cz.frantovo.nekurak.ejb;
2
3 import cz.frantovo.nekurak.dto.Podnik;
4 import java.util.Collection;
5 import javax.ejb.Remote;
6
7 /**
8 *
9 * @author fiki
10 */
11 @Remote
12 public interface PodnikHibernateDAORemote {
13
14 public Collection<Podnik> getPodniky();
15
16 }