Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21339 kshitij.so 1
package com.spice.profitmandi.web.res;
2
 
3
public class BulkPricing
4
{
5
    private double price;
6
    private int quantity;
7
 
8
	public double getPrice() {
9
		return price;
10
	}
11
	public void setPrice(double price) {
12
		this.price = price;
13
	}
14
	public int getQuantity() {
15
		return quantity;
16
	}
17
	public void setQuantity(int quantity) {
18
		this.quantity = quantity;
19
	}
20
 
21
 
22
}
23
 
24