var WebShopAJAX=function() {
WebShopAJAX.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WebShopAJAX.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return WebShopAJAX._staticInstance.get_path();},
addProspectTip:function(sendingEmail,prospectEmail,comment,prospectTipTypeID,userID,customerID,succeededCallback, failedCallback, userContext) {
/// <param name="sendingEmail" type="String">System.String</param>
/// <param name="prospectEmail" type="String">System.String</param>
/// <param name="comment" type="String">System.String</param>
/// <param name="prospectTipTypeID" type="String">System.String</param>
/// <param name="userID" type="String">System.String</param>
/// <param name="customerID" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'addProspectTip',false,{sendingEmail:sendingEmail,prospectEmail:prospectEmail,comment:comment,prospectTipTypeID:prospectTipTypeID,userID:userID,customerID:customerID},succeededCallback,failedCallback,userContext); }}
WebShopAJAX.registerClass('WebShopAJAX',Sys.Net.WebServiceProxy);
WebShopAJAX._staticInstance = new WebShopAJAX();
WebShopAJAX.set_path = function(value) {
WebShopAJAX._staticInstance.set_path(value); }
WebShopAJAX.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return WebShopAJAX._staticInstance.get_path();}
WebShopAJAX.set_timeout = function(value) {
WebShopAJAX._staticInstance.set_timeout(value); }
WebShopAJAX.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return WebShopAJAX._staticInstance.get_timeout(); }
WebShopAJAX.set_defaultUserContext = function(value) { 
WebShopAJAX._staticInstance.set_defaultUserContext(value); }
WebShopAJAX.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return WebShopAJAX._staticInstance.get_defaultUserContext(); }
WebShopAJAX.set_defaultSucceededCallback = function(value) { 
 WebShopAJAX._staticInstance.set_defaultSucceededCallback(value); }
WebShopAJAX.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return WebShopAJAX._staticInstance.get_defaultSucceededCallback(); }
WebShopAJAX.set_defaultFailedCallback = function(value) { 
WebShopAJAX._staticInstance.set_defaultFailedCallback(value); }
WebShopAJAX.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return WebShopAJAX._staticInstance.get_defaultFailedCallback(); }
WebShopAJAX.set_path("/WebShopAJAX.asmx");
WebShopAJAX.addProspectTip= function(sendingEmail,prospectEmail,comment,prospectTipTypeID,userID,customerID,onSuccess,onFailed,userContext) {
/// <param name="sendingEmail" type="String">System.String</param>
/// <param name="prospectEmail" type="String">System.String</param>
/// <param name="comment" type="String">System.String</param>
/// <param name="prospectTipTypeID" type="String">System.String</param>
/// <param name="userID" type="String">System.String</param>
/// <param name="customerID" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
WebShopAJAX._staticInstance.addProspectTip(sendingEmail,prospectEmail,comment,prospectTipTypeID,userID,customerID,onSuccess,onFailed,userContext); }

