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