package info.ahlberg.spring;

public interface ContactService {

	Object findAll();

	void save(Contact contact);

}
