Subversion Repositories SmartDukaan

Rev

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

Rev 30454 Rev 30640
Line 338... Line 338...
338
 
338
 
339
	public void setCatalogStringMap(Map<Integer, String> catalogStringMap) {
339
	public void setCatalogStringMap(Map<Integer, String> catalogStringMap) {
340
		this.catalogStringMap = catalogStringMap;
340
		this.catalogStringMap = catalogStringMap;
341
	}
341
	}
342
 
342
 
-
 
343
	public boolean isWithinRange(LocalDateTime testDate) {
-
 
344
		return !(testDate.isBefore(this.startDateTime) || testDate.isAfter(endDateTime));
-
 
345
	}
-
 
346
 
343
 
347
 
344
}
348
}
345
349