bunti/src/main/java/de/ctdo/bunti/dao/BuntiDevicesDAO.java

13 lines
219 B
Java
Raw Normal View History

2012-03-02 21:09:43 +00:00
package de.ctdo.bunti.dao;
import java.util.Collection;
2012-03-02 21:09:43 +00:00
import de.ctdo.bunti.model.*;
public interface BuntiDevicesDAO {
2012-03-04 00:21:00 +00:00
Collection<BuntiDMXDevice> getAllDMXDevices();
BuntiDevice getDeviceById(int deviceId);
2012-03-02 21:09:43 +00:00
}