parent
1fe9d14d1c
commit
40becf2e3c
@ -0,0 +1,12 @@
|
|||||||
|
package com.dao;
|
||||||
|
|
||||||
|
import java.sql.SQLException;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import com.domain.Production;
|
||||||
|
|
||||||
|
public interface ProductionDao extends Dao {
|
||||||
|
public boolean addProduction(Production s)throws SQLException;
|
||||||
|
public List<Production> listProduction()throws SQLException;
|
||||||
|
public int removeProduction(int id)throws SQLException;
|
||||||
|
}
|
Loading…
Reference in new issue