var ProductService=function() {
ProductService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ProductService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ProductService._staticInstance.get_path();},
ProductsFullRange:function(category,manufacturer,RangeID,area,sortby,RootURL,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ProductsFullRange',false,{category:category,manufacturer:manufacturer,RangeID:RangeID,area:area,sortby:sortby,RootURL:RootURL},succeededCallback,failedCallback,userContext); }}
ProductService.registerClass('ProductService',Sys.Net.WebServiceProxy);
ProductService._staticInstance = new ProductService();
ProductService.set_path = function(value) { ProductService._staticInstance.set_path(value); }
ProductService.get_path = function() { return ProductService._staticInstance.get_path(); }
ProductService.set_timeout = function(value) { ProductService._staticInstance.set_timeout(value); }
ProductService.get_timeout = function() { return ProductService._staticInstance.get_timeout(); }
ProductService.set_defaultUserContext = function(value) { ProductService._staticInstance.set_defaultUserContext(value); }
ProductService.get_defaultUserContext = function() { return ProductService._staticInstance.get_defaultUserContext(); }
ProductService.set_defaultSucceededCallback = function(value) { ProductService._staticInstance.set_defaultSucceededCallback(value); }
ProductService.get_defaultSucceededCallback = function() { return ProductService._staticInstance.get_defaultSucceededCallback(); }
ProductService.set_defaultFailedCallback = function(value) { ProductService._staticInstance.set_defaultFailedCallback(value); }
ProductService.get_defaultFailedCallback = function() { return ProductService._staticInstance.get_defaultFailedCallback(); }
ProductService.set_path("/services/ProductService.asmx");
ProductService.ProductsFullRange= function(category,manufacturer,RangeID,area,sortby,RootURL,onSuccess,onFailed,userContext) {ProductService._staticInstance.ProductsFullRange(category,manufacturer,RangeID,area,sortby,RootURL,onSuccess,onFailed,userContext); }
