Subversion Repositories SmartDukaan

Rev

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

Rev 23786 Rev 23796
Line 1... Line 1...
1
package com.spice.profitmandi.common.model;
1
package com.spice.profitmandi.common.model;
2
 
2
 
3
public class ItemIdAvailability {
3
public class ItemIdAvailability {
4
	private int itemId;
4
	private int itemId;
5
	private int availability;
5
	private int availability;
-
 
6
	
-
 
7
	public ItemIdAvailability(long availability,int itemId) {
-
 
8
		this.itemId = itemId;
-
 
9
		this.availability = (int)availability;
-
 
10
	}
6
 
11
 
7
	public int getItemId() {
12
	public int getItemId() {
8
		return itemId;
13
		return itemId;
9
	}
14
	}
10
 
15