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.
teeth/code/ReportDao.java

13 lines
266 B

package com.dao;
import java.sql.SQLException;
import java.util.*;
import com.domain.Report;
public interface ReportDao extends Dao{
public List<Report> listReport()throws SQLException;
public int removeReport(int Rid)throws SQLException;
}