/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package hibernatespringtest;

import java.util.List;

/**
 *
 * @author dhaval
 */
public interface EmployeeDao {

    List<EmployeeInfo> getAll();
    void save(Object e);
    void removeAll();
}
