package br.eti.faces.jruby.dao;

import java.util.ArrayList;

//This interface will be implemented
//by CostumerDao Ruby class to allow
//Java/Spring integration required
//by JSF.
public interface ICostumerDao {

	public void add(String name, String address, String country);
	
	public ArrayList getCostumers();
}

