Subversion Repositories SmartDukaan

Rev

Rev 21339 | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.web.res;

public class BulkPricing
{
    private double price;
    private int quantity;
    
        public double getPrice() {
                return price;
        }
        public void setPrice(double price) {
                this.price = price;
        }
        public int getQuantity() {
                return quantity;
        }
        public void setQuantity(int quantity) {
                this.quantity = quantity;
        }

    
}