parent
cd33808ce0
commit
af99cc36b3
@ -0,0 +1,10 @@
|
|||||||
|
package com.dao;
|
||||||
|
import java.sql.SQLException;
|
||||||
|
import java.util.*;
|
||||||
|
import com.domain.Doctor;
|
||||||
|
|
||||||
|
public interface DoctorDao extends Dao{
|
||||||
|
public boolean addDoctor(Doctor s)throws SQLException;
|
||||||
|
public List<Doctor> listDoctor()throws SQLException;
|
||||||
|
public int deleteDoctor(int id)throws SQLException;
|
||||||
|
}
|
Loading…
Reference in new issue