From 13b73fb0de1448a8c216c92d68e28719a2820dad Mon Sep 17 00:00:00 2001 From: sebas Date: Mon, 14 Dec 2020 11:21:43 +0100 Subject: [PATCH] [Added] created method for CouponListManager --- .../recyclerview/CouponListManager.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/app/src/main/java/com/a1/nextlocation/recyclerview/CouponListManager.java b/app/src/main/java/com/a1/nextlocation/recyclerview/CouponListManager.java index fca99a6..320567d 100644 --- a/app/src/main/java/com/a1/nextlocation/recyclerview/CouponListManager.java +++ b/app/src/main/java/com/a1/nextlocation/recyclerview/CouponListManager.java @@ -1,4 +1,23 @@ package com.a1.nextlocation.recyclerview; +import com.a1.nextlocation.data.Coupon; + +import java.util.List; + public class CouponListManager { + + private List coupon; + + public CouponListManager(){ + + } + + public List getCoupon() { + return coupon; + } + + public void setCoupon(List location) { + this.coupon = coupon; + } + }