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