Type.registerNamespace('thmz.shire.services');
thmz.shire.services.onlineservices=function() {
thmz.shire.services.onlineservices.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
thmz.shire.services.onlineservices.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return thmz.shire.services.onlineservices._staticInstance.get_path();},
HelloWorld:function(succeededCallback, failedCallback, userContext) {
/// <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(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
Onlinelist:function(total,succeededCallback, failedCallback, userContext) {
/// <param name="total" type="Number">System.Int32</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(), 'Onlinelist',false,{total:total},succeededCallback,failedCallback,userContext); }}
thmz.shire.services.onlineservices.registerClass('thmz.shire.services.onlineservices',Sys.Net.WebServiceProxy);
thmz.shire.services.onlineservices._staticInstance = new thmz.shire.services.onlineservices();
thmz.shire.services.onlineservices.set_path = function(value) {
thmz.shire.services.onlineservices._staticInstance.set_path(value); }
thmz.shire.services.onlineservices.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return thmz.shire.services.onlineservices._staticInstance.get_path();}
thmz.shire.services.onlineservices.set_timeout = function(value) {
thmz.shire.services.onlineservices._staticInstance.set_timeout(value); }
thmz.shire.services.onlineservices.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return thmz.shire.services.onlineservices._staticInstance.get_timeout(); }
thmz.shire.services.onlineservices.set_defaultUserContext = function(value) { 
thmz.shire.services.onlineservices._staticInstance.set_defaultUserContext(value); }
thmz.shire.services.onlineservices.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return thmz.shire.services.onlineservices._staticInstance.get_defaultUserContext(); }
thmz.shire.services.onlineservices.set_defaultSucceededCallback = function(value) { 
 thmz.shire.services.onlineservices._staticInstance.set_defaultSucceededCallback(value); }
thmz.shire.services.onlineservices.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return thmz.shire.services.onlineservices._staticInstance.get_defaultSucceededCallback(); }
thmz.shire.services.onlineservices.set_defaultFailedCallback = function(value) { 
thmz.shire.services.onlineservices._staticInstance.set_defaultFailedCallback(value); }
thmz.shire.services.onlineservices.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return thmz.shire.services.onlineservices._staticInstance.get_defaultFailedCallback(); }
thmz.shire.services.onlineservices.set_path("/services/onlineservices.asmx");
thmz.shire.services.onlineservices.HelloWorld= function(onSuccess,onFailed,userContext) {
/// <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>
thmz.shire.services.onlineservices._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
thmz.shire.services.onlineservices.Onlinelist= function(total,onSuccess,onFailed,userContext) {
/// <param name="total" type="Number">System.Int32</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>
thmz.shire.services.onlineservices._staticInstance.Onlinelist(total,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('thmz.shire.bll.model');
if (typeof(thmz.shire.bll.model.COnlineInfo) === 'undefined') {
thmz.shire.bll.model.COnlineInfo=gtc("thmz.shire.bll.model.COnlineInfo");
thmz.shire.bll.model.COnlineInfo.registerClass('thmz.shire.bll.model.COnlineInfo');
}
