You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
354 B
13 lines
354 B
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;
|
|
}
|