var ws_offer=function() {
ws_offer.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ws_offer.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ws_offer._staticInstance.get_path();},
offerLike:function(ofrId,userId,cookieId,userIp,typ,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'offerLike',false,{ofrId:ofrId,userId:userId,cookieId:cookieId,userIp:userIp,typ:typ},succeededCallback,failedCallback,userContext); },
restFav:function(custId,CustName,ofrId,typ,uId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'restFav',false,{custId:custId,CustName:CustName,ofrId:ofrId,typ:typ,uId:uId},succeededCallback,failedCallback,userContext); }}
ws_offer.registerClass('ws_offer',Sys.Net.WebServiceProxy);
ws_offer._staticInstance = new ws_offer();
ws_offer.set_path = function(value) { ws_offer._staticInstance.set_path(value); }
ws_offer.get_path = function() { return ws_offer._staticInstance.get_path(); }
ws_offer.set_timeout = function(value) { ws_offer._staticInstance.set_timeout(value); }
ws_offer.get_timeout = function() { return ws_offer._staticInstance.get_timeout(); }
ws_offer.set_defaultUserContext = function(value) { ws_offer._staticInstance.set_defaultUserContext(value); }
ws_offer.get_defaultUserContext = function() { return ws_offer._staticInstance.get_defaultUserContext(); }
ws_offer.set_defaultSucceededCallback = function(value) { ws_offer._staticInstance.set_defaultSucceededCallback(value); }
ws_offer.get_defaultSucceededCallback = function() { return ws_offer._staticInstance.get_defaultSucceededCallback(); }
ws_offer.set_defaultFailedCallback = function(value) { ws_offer._staticInstance.set_defaultFailedCallback(value); }
ws_offer.get_defaultFailedCallback = function() { return ws_offer._staticInstance.get_defaultFailedCallback(); }
ws_offer.set_enableJsonp = function(value) { ws_offer._staticInstance.set_enableJsonp(value); }
ws_offer.get_enableJsonp = function() { return ws_offer._staticInstance.get_enableJsonp(); }
ws_offer.set_jsonpCallbackParameter = function(value) { ws_offer._staticInstance.set_jsonpCallbackParameter(value); }
ws_offer.get_jsonpCallbackParameter = function() { return ws_offer._staticInstance.get_jsonpCallbackParameter(); }
ws_offer.set_path("/ws_offer.asmx");
ws_offer.offerLike= function(ofrId,userId,cookieId,userIp,typ,onSuccess,onFailed,userContext) {ws_offer._staticInstance.offerLike(ofrId,userId,cookieId,userIp,typ,onSuccess,onFailed,userContext); }
ws_offer.restFav= function(custId,CustName,ofrId,typ,uId,onSuccess,onFailed,userContext) {ws_offer._staticInstance.restFav(custId,CustName,ofrId,typ,uId,onSuccess,onFailed,userContext); }

