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 listProduction()throws SQLException; public int removeProduction(int id)throws SQLException; }