Type.registerNamespace('Helium.Core.Services');
Helium.Core.Services.ProjectService=function() {
Helium.Core.Services.ProjectService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Helium.Core.Services.ProjectService.prototype={
GetProjects:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(Helium.Core.Services.ProjectService.get_path(), 'GetProjects',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); }}
Helium.Core.Services.ProjectService.registerClass('Helium.Core.Services.ProjectService',Sys.Net.WebServiceProxy);
Helium.Core.Services.ProjectService._staticInstance = new Helium.Core.Services.ProjectService();
Helium.Core.Services.ProjectService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; Helium.Core.Services.ProjectService._staticInstance._path = value; }
Helium.Core.Services.ProjectService.get_path = function() { return Helium.Core.Services.ProjectService._staticInstance._path; }
Helium.Core.Services.ProjectService.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); }
Helium.Core.Services.ProjectService._staticInstance._timeout = value; }
Helium.Core.Services.ProjectService.get_timeout = function() { 
return Helium.Core.Services.ProjectService._staticInstance._timeout; }
Helium.Core.Services.ProjectService.set_defaultUserContext = function(value) { 
Helium.Core.Services.ProjectService._staticInstance._userContext = value; }
Helium.Core.Services.ProjectService.get_defaultUserContext = function() { 
return Helium.Core.Services.ProjectService._staticInstance._userContext; }
Helium.Core.Services.ProjectService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; Helium.Core.Services.ProjectService._staticInstance._succeeded = value; }
Helium.Core.Services.ProjectService.get_defaultSucceededCallback = function() { 
return Helium.Core.Services.ProjectService._staticInstance._succeeded; }
Helium.Core.Services.ProjectService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; Helium.Core.Services.ProjectService._staticInstance._failed = value; }
Helium.Core.Services.ProjectService.get_defaultFailedCallback = function() { 
return Helium.Core.Services.ProjectService._staticInstance._failed; }
Helium.Core.Services.ProjectService.set_path("/Services/ProjectService.asmx");
Helium.Core.Services.ProjectService.GetProjects= function(prefixText,count,onSuccess,onFailed,userContext) {Helium.Core.Services.ProjectService._staticInstance.GetProjects(prefixText,count,onSuccess,onFailed,userContext); }

