var blogshow=function() {
blogshow.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
blogshow.prototype={
LoadGirl:function(succeededCallback, failedCallback, userContext) {
return this._invoke(blogshow.get_path(), 'LoadGirl',false,{},succeededCallback,failedCallback,userContext); },
LoadBoy:function(succeededCallback, failedCallback, userContext) {
return this._invoke(blogshow.get_path(), 'LoadBoy',false,{},succeededCallback,failedCallback,userContext); }}
blogshow.registerClass('blogshow',Sys.Net.WebServiceProxy);
blogshow._staticInstance = new blogshow();
blogshow.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; blogshow._staticInstance._path = value; }
blogshow.get_path = function() { return blogshow._staticInstance._path; }
blogshow.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
blogshow._staticInstance._timeout = value; }
blogshow.get_timeout = function() { 
return blogshow._staticInstance._timeout; }
blogshow.set_defaultUserContext = function(value) { 
blogshow._staticInstance._userContext = value; }
blogshow.get_defaultUserContext = function() { 
return blogshow._staticInstance._userContext; }
blogshow.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; blogshow._staticInstance._succeeded = value; }
blogshow.get_defaultSucceededCallback = function() { 
return blogshow._staticInstance._succeeded; }
blogshow.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; blogshow._staticInstance._failed = value; }
blogshow.get_defaultFailedCallback = function() { 
return blogshow._staticInstance._failed; }
blogshow.set_path("/webservice/blogshow.asmx");
blogshow.LoadGirl= function(onSuccess,onFailed,userContext) {blogshow._staticInstance.LoadGirl(onSuccess,onFailed,userContext); }
blogshow.LoadBoy= function(onSuccess,onFailed,userContext) {blogshow._staticInstance.LoadBoy(onSuccess,onFailed,userContext); }
