package logic;

public interface SaleCatalog {

	void entrySale(Sale sale);

	Integer getNewSaleId();
}