Subversion Repositories SmartDukaan

Rev

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

Rev 21431 Rev 21440
Line 15... Line 15...
15
    private SaleValue smartphoneSaleValue;
15
    private SaleValue smartphoneSaleValue;
16
    private Set<Category> categories;
16
    private Set<Category> categories;
17
    private LineOfBusiness lineOfBusiness;
17
    private LineOfBusiness lineOfBusiness;
18
    private int documentId;
18
    private int documentId;
19
    private Shop shop;
19
    private Shop shop;
-
 
20
    private boolean shopAddressSameAsRetailerAddress;
20
    private Address address;
21
    private Address address;
21
 
22
 
22
    public String getName() {
23
    public String getName() {
23
        return name;
24
        return name;
24
    }
25
    }
Line 96... Line 97...
96
    }
97
    }
97
 
98
 
98
    public void setAddress(Address address) {
99
    public void setAddress(Address address) {
99
        this.address = address;
100
        this.address = address;
100
    }
101
    }
-
 
102
    
-
 
103
    public boolean isShopAddressSameAsRetailerAddress() {
-
 
104
		return shopAddressSameAsRetailerAddress;
-
 
105
	}
-
 
106
    public void setShopAddressSameAsRetailerAddress(boolean shopAddressSameAsRetailerAddress) {
-
 
107
		this.shopAddressSameAsRetailerAddress = shopAddressSameAsRetailerAddress;
-
 
108
	}
101
 
109
 
102
}
110
}