// Provide a default path to dwr.engine if (dwr == null) var dwr = {}; if (dwr.engine == null) dwr.engine = {}; if (DWREngine == null) var DWREngine = dwr.engine; if (solutionService == null) var solutionService = {}; solutionService._path = '/dwr'; solutionService.getUpCount = function(p0, p1, callback) { dwr.engine._execute(solutionService._path, 'solutionService', 'getUpCount', p0, p1, callback); } solutionService.getDownCount = function(p0, p1, callback) { dwr.engine._execute(solutionService._path, 'solutionService', 'getDownCount', p0, p1, callback); } solutionService.thumbsUp = function(p0, p1, callback) { dwr.engine._execute(solutionService._path, 'solutionService', 'thumbsUp', p0, p1, callback); } solutionService.thumbsDown = function(p0, p1, callback) { dwr.engine._execute(solutionService._path, 'solutionService', 'thumbsDown', p0, p1, callback); }