var PlotInfoService=function() {
PlotInfoService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PlotInfoService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return PlotInfoService._staticInstance.get_path();},
GetPlotData:function(developmentID,ownPlotID,loggedIn,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetPlotData',false,{developmentID:developmentID,ownPlotID:ownPlotID,loggedIn:loggedIn},succeededCallback,failedCallback,userContext); },
ValidatePostcode:function(postcode,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ValidatePostcode',false,{postcode:postcode},succeededCallback,failedCallback,userContext); }}
PlotInfoService.registerClass('PlotInfoService',Sys.Net.WebServiceProxy);
PlotInfoService._staticInstance = new PlotInfoService();
PlotInfoService.set_path = function(value) { PlotInfoService._staticInstance.set_path(value); }
PlotInfoService.get_path = function() { return PlotInfoService._staticInstance.get_path(); }
PlotInfoService.set_timeout = function(value) { PlotInfoService._staticInstance.set_timeout(value); }
PlotInfoService.get_timeout = function() { return PlotInfoService._staticInstance.get_timeout(); }
PlotInfoService.set_defaultUserContext = function(value) { PlotInfoService._staticInstance.set_defaultUserContext(value); }
PlotInfoService.get_defaultUserContext = function() { return PlotInfoService._staticInstance.get_defaultUserContext(); }
PlotInfoService.set_defaultSucceededCallback = function(value) { PlotInfoService._staticInstance.set_defaultSucceededCallback(value); }
PlotInfoService.get_defaultSucceededCallback = function() { return PlotInfoService._staticInstance.get_defaultSucceededCallback(); }
PlotInfoService.set_defaultFailedCallback = function(value) { PlotInfoService._staticInstance.set_defaultFailedCallback(value); }
PlotInfoService.get_defaultFailedCallback = function() { return PlotInfoService._staticInstance.get_defaultFailedCallback(); }
PlotInfoService.set_path("/PlotInfoService.asmx");
PlotInfoService.GetPlotData= function(developmentID,ownPlotID,loggedIn,onSuccess,onFailed,userContext) {PlotInfoService._staticInstance.GetPlotData(developmentID,ownPlotID,loggedIn,onSuccess,onFailed,userContext); }
PlotInfoService.ValidatePostcode= function(postcode,onSuccess,onFailed,userContext) {PlotInfoService._staticInstance.ValidatePostcode(postcode,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(PlotInfo) === 'undefined') {
var PlotInfo=gtc("PlotInfo");
PlotInfo.registerClass('PlotInfo');
}
