Subversion Repositories SmartDukaan

Rev

Rev 10673 | Rev 10683 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10673 Rev 10680
Line 9... Line 9...
9
	private String buttonText; 
9
	private String buttonText; 
10
	private Boolean showSellingPrice = false; 
10
	private Boolean showSellingPrice = false; 
11
	private Boolean comingSoon = false; 
11
	private Boolean comingSoon = false; 
12
	
12
	
13
	
13
	
14
	public double getSellingPrice() {
14
	public Double getSellingPrice() {
15
		return sellingPrice;
15
		return sellingPrice;
16
	}
16
	}
17
	public void setSellingPrice(double sellingPrice) {
17
	public void setSellingPrice(Double sellingPrice) {
18
		this.sellingPrice = sellingPrice;
18
		this.sellingPrice = sellingPrice;
19
	}
19
	}
20
	public double getMrp() {
20
	public Double getMrp() {
21
		return mrp;
21
		return mrp;
22
	}
22
	}
23
	public void setMrp(double mrp) {
23
	public void setMrp(Double mrp) {
24
		this.mrp = mrp;
24
		this.mrp = mrp;
25
	}
25
	}
26
	public long getId() {
26
	public Long getId() {
27
		return id;
27
		return id;
28
	}
28
	}
29
	public void setId(long id) {
29
	public void setId(Long id) {
30
		this.id = id;
30
		this.id = id;
31
	}
31
	}
32
	/*public boolean isAvailability() {
32
	/*public boolean isAvailability() {
33
		return availability;
33
		return availability;
34
	}
34
	}