Subversion Repositories SmartDukaan

Rev

Rev 21431 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21426 ashik.ali 1
package com.spice.profitmandi.web.req;
2
 
3
public class LineOfBusiness {
4
	private boolean recharge;
5
    private boolean mobile;
6
    private boolean accessories;
7
    private boolean other1;
8
    private boolean other2;
9
	public boolean isRecharge() {
10
		return recharge;
11
	}
12
	public void setRecharge(boolean recharge) {
13
		this.recharge = recharge;
14
	}
15
	public boolean isMobile() {
16
		return mobile;
17
	}
18
	public void setMobile(boolean mobile) {
19
		this.mobile = mobile;
20
	}
21
	public boolean isAccessories() {
22
		return accessories;
23
	}
24
	public void setAccessories(boolean accessories) {
25
		this.accessories = accessories;
26
	}
27
	public boolean isOther1() {
28
		return other1;
29
	}
30
	public void setOther1(boolean other1) {
31
		this.other1 = other1;
32
	}
33
	public boolean isOther2() {
34
		return other2;
35
	}
36
	public void setOther2(boolean other2) {
37
		this.other2 = other2;
38
	}
39
}