var dataService=function() {
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
dataService.prototype={
getCommunityQuote:function(inReplyId,succeededCallback, failedCallback, userContext) {
    /// <summary>Invoke the getCommunityQuote WebMethod</summary>
    /// <param name="inReplyId">WebMethod parameter: inReplyId(type: Int32)</param>
    /// <param name="succeededCallback" type="function" optional="true">Callback on successful completion of request</param>
    /// <param name="failedCallback" type="function" optional="true">Callback on failure of request</param>
    /// <param name="userContext" optional="true">User context data (any JavaScript type)</param>
return Sys.Net._WebMethod._invoke.apply(null, [ this, 'getCommunityQuote','dataService.getCommunityQuote',false,{inReplyId:inReplyId},succeededCallback, failedCallback, userContext]); },
getBlogQuote:function(inBlogId,succeededCallback, failedCallback, userContext) {
    /// <summary>Invoke the getBlogQuote WebMethod</summary>
    /// <param name="inBlogId">WebMethod parameter: inBlogId(type: Int32)</param>
    /// <param name="succeededCallback" type="function" optional="true">Callback on successful completion of request</param>
    /// <param name="failedCallback" type="function" optional="true">Callback on failure of request</param>
    /// <param name="userContext" optional="true">User context data (any JavaScript type)</param>
return Sys.Net._WebMethod._invoke.apply(null, [ this, 'getBlogQuote','dataService.getBlogQuote',false,{inBlogId:inBlogId},succeededCallback, failedCallback, userContext]); },
getScehduleReplyQuote:function(inScheduleReplyId,succeededCallback, failedCallback, userContext) {
    /// <summary>Invoke the getScehduleReplyQuote WebMethod</summary>
    /// <param name="inScheduleReplyId">WebMethod parameter: inScheduleReplyId(type: Int32)</param>
    /// <param name="succeededCallback" type="function" optional="true">Callback on successful completion of request</param>
    /// <param name="failedCallback" type="function" optional="true">Callback on failure of request</param>
    /// <param name="userContext" optional="true">User context data (any JavaScript type)</param>
return Sys.Net._WebMethod._invoke.apply(null, [ this, 'getScehduleReplyQuote','dataService.getScehduleReplyQuote',false,{inScheduleReplyId:inScheduleReplyId},succeededCallback, failedCallback, userContext]); },
getProfileText:function(inProfileId,succeededCallback, failedCallback, userContext) {
    /// <summary>Invoke the getProfileText WebMethod</summary>
    /// <param name="inProfileId">WebMethod parameter: inProfileId(type: Int32)</param>
    /// <param name="succeededCallback" type="function" optional="true">Callback on successful completion of request</param>
    /// <param name="failedCallback" type="function" optional="true">Callback on failure of request</param>
    /// <param name="userContext" optional="true">User context data (any JavaScript type)</param>
return Sys.Net._WebMethod._invoke.apply(null, [ this, 'getProfileText','dataService.getProfileText',false,{inProfileId:inProfileId},succeededCallback, failedCallback, userContext]); },_get_path: function() { return dataService.get_path(); },

set_timeout: function(value) {
    /// <summary>Sets the timeout for this service.</summary>
    /// <param name="value" type="Number">The timeout in milliseconds.</param>
    var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]);
    if (e) throw e;
    if (value < 0) {
        throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout);
    }
    this._timeout = value;
},
get_timeout: function() {
    /// <summary>Returns the timeout in milliseconds for this service.</summary>
    /// <returns type="Number">The timeout in milliseconds for the service.</returns>
    return this._timeout;
},
set_defaultUserContext: function(value) {
    /// <summary>Sets the default userContext for this service.</summary>
    /// <param name="value">The default userContext for this service.</param>
    this._userContext = value;
},
get_defaultUserContext: function() {
    /// <summary>Returns the default userContext for this service.</summary>
    /// <returns>Returns the default userContext for this service.</returns>
    return this._userContext;
},
set_defaultSucceededCallback: function(value) {
    /// <summary>Sets the default succeededCallback for this service.</summary>
    /// <param name="value" type="Function">The default succeededCallback for this service.</param>
    var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]);
    if (e) throw e;
    this._succeeded = value;
},
get_defaultSucceededCallback: function() {
    /// <summary>Returns the default succeededCallback for this service.</summary>
    /// <returns type="Function">Returns the default succeededCallback for this service.</returns>
    return this._succeeded;
},
set_defaultFailedCallback: function(value) {
    /// <summary>Sets the default FailedCallback for this service.</summary>
    /// <param name="value" type="Function">The default FailedCallback for this service.</param>
    var e = Function._validateParams(arguments, [{name: 'set_defaultFailedCallback', type: Function}]);
    if (e) throw e;
    this._failed = value;
},
get_defaultFailedCallback: function() {
    /// <summary>Returns the default failedCallback for this service.</summary>
    /// <returns type="Function">Returns the default failedCallback for this service.</returns>
    return this._failed;
}
}
dataService._staticInstance = new dataService();
dataService.set_path = function(value) { 
/// <summary>Sets the service url.</summary>
/// <param name="path" type="String">The service url.
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; dataService._staticInstance._path = value; }
dataService.get_path = function() { 
/// <summary>Returns the service url.</summary>
/// <returns type="String">The service url.</returns>
return dataService._staticInstance._path; }
dataService.set_timeout = function(value) { 
/// <summary>Sets the service timeout.</summary>
/// <param name="value" type="Number">The service timeout.
var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
dataService._staticInstance._timeout = value; }
dataService.get_timeout = function() { 
/// <summary>Returns the service timeout.</summary>
/// <returns type="Number">The service timeout.</returns>
return dataService._staticInstance._timeout; }
dataService.set_defaultUserContext = function(value) { 
/// <summary>Sets the service default userContext.</summary>
/// <param name="value">The service default user context.
dataService._staticInstance._userContext = value; }
dataService.get_defaultUserContext = function() { 
/// <summary>Returns the service default user context.</summary>
/// <returns>The service default user context.</returns>
return dataService._staticInstance._userContext; }
dataService.set_defaultSucceededCallback = function(value) { 
/// <summary>Sets the service default succeeded callback.</summary>
/// <param name="value" type="Function">The service default succeed callback function.
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; dataService._staticInstance._succeeded = value; }
dataService.get_defaultSucceededCallback = function() { 
/// <summary>Returns the service default succeeded callback.</summary>
/// <returns type="Function">The service default succeeded callback.</returns>
return dataService._staticInstance._succeeded; }
dataService.set_defaultFailedCallback = function(value) { 
/// <summary>Sets the service default failed callback function.</summary>
/// <param name="value" type="Function">The service default failed callback function.
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; dataService._staticInstance._failed = value; }
dataService.get_defaultFailedCallback = function() { 
/// <summary>Returns the service default failed callback function.</summary>
/// <returns type="Function">The service default failed callback function.</returns>
return dataService._staticInstance._failed; }
dataService.set_path("/dataService.asmx");
dataService.getCommunityQuote= function(inReplyId,onSuccess,onFailed,userContext) {    /// <summary>Invoke the getCommunityQuote WebMethod</summary>
    /// <param name="inReplyId">WebMethod parameter: inReplyId(type: Int32)</param>
    /// <param name="succeededCallback" type="function" optional="true">Callback on successful completion of request</param>
    /// <param name="failedCallback" type="function" optional="true">Callback on failure of request</param>
    /// <param name="userContext" optional="true">User context data (any JavaScript type)</param>
dataService._staticInstance.getCommunityQuote(inReplyId,onSuccess,onFailed,userContext); }
dataService.getBlogQuote= function(inBlogId,onSuccess,onFailed,userContext) {    /// <summary>Invoke the getBlogQuote WebMethod</summary>
    /// <param name="inBlogId">WebMethod parameter: inBlogId(type: Int32)</param>
    /// <param name="succeededCallback" type="function" optional="true">Callback on successful completion of request</param>
    /// <param name="failedCallback" type="function" optional="true">Callback on failure of request</param>
    /// <param name="userContext" optional="true">User context data (any JavaScript type)</param>
dataService._staticInstance.getBlogQuote(inBlogId,onSuccess,onFailed,userContext); }
dataService.getScehduleReplyQuote= function(inScheduleReplyId,onSuccess,onFailed,userContext) {    /// <summary>Invoke the getScehduleReplyQuote WebMethod</summary>
    /// <param name="inScheduleReplyId">WebMethod parameter: inScheduleReplyId(type: Int32)</param>
    /// <param name="succeededCallback" type="function" optional="true">Callback on successful completion of request</param>
    /// <param name="failedCallback" type="function" optional="true">Callback on failure of request</param>
    /// <param name="userContext" optional="true">User context data (any JavaScript type)</param>
dataService._staticInstance.getScehduleReplyQuote(inScheduleReplyId,onSuccess,onFailed,userContext); }
dataService.getProfileText= function(inProfileId,onSuccess,onFailed,userContext) {    /// <summary>Invoke the getProfileText WebMethod</summary>
    /// <param name="inProfileId">WebMethod parameter: inProfileId(type: Int32)</param>
    /// <param name="succeededCallback" type="function" optional="true">Callback on successful completion of request</param>
    /// <param name="failedCallback" type="function" optional="true">Callback on failure of request</param>
    /// <param name="userContext" optional="true">User context data (any JavaScript type)</param>
dataService._staticInstance.getProfileText(inProfileId,onSuccess,onFailed,userContext); }
