package commande;

public interface IStateCommande {
	IStateCommande payer();
	IStateCommande livrer();
	IStateCommande rembourser();
}
