Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8461 vikram.rag 1
package com.amazonaws.mws.samples;
2
 
3
import java.util.Date;
4
 
5
public class PriceAtDate {
6
	Date date;
7
	public Date getDate() {
8
		return date;
9
	}
10
	public void setDate(Date date) {
11
		this.date = date;
12
	}
13
	public Double getPrice() {
14
		return Price;
15
	}
16
	public void setPrice(Double price) {
17
		Price = price;
18
	}
19
	Double Price;
20
 
21
}
22