Newer
Older

Gabriel Copat
committed
//Holds locations data repository

Gabriel Copat
committed
import java.util.List;
public interface RewardsRepository {
List<Sticker> getAllStickers();
List<Sticker> getAllStickersFromPack(int packID);
List<Sticker> getAllStickersFromUser(int userID);
List<Pack> getAllPacks();
Pack findPackByID(int id);