[Added] created method for CouponListManager
This commit is contained in:
@@ -1,4 +1,23 @@
|
|||||||
package com.a1.nextlocation.recyclerview;
|
package com.a1.nextlocation.recyclerview;
|
||||||
|
|
||||||
|
import com.a1.nextlocation.data.Coupon;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
public class CouponListManager {
|
public class CouponListManager {
|
||||||
|
|
||||||
|
private List<Coupon> coupon;
|
||||||
|
|
||||||
|
public CouponListManager(){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<Coupon> getCoupon() {
|
||||||
|
return coupon;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCoupon(List<Coupon> location) {
|
||||||
|
this.coupon = coupon;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user