﻿/// <reference name="MicrosoftAjax.js"/>

Type.registerNamespace("RenkSeed.Application.Web.Scripts");

RenkSeed.Application.Web.Scripts.PlotServiceClient = function() {
}

RenkSeed.Application.Web.Scripts.PlotServiceClient.prototype = {
    initialize: function() {
    },

    GeoLocateZip: function(plot, succeededCallback, failedCallback, userContext) {
        RenkSeed.ServiceLibrary.IPlotService.GeoLocateZip(plot, succeededCallback, failedCallback, userContext);
    },

    GeoLocateCity: function(plot, succeededCallback, failedCallback, userContext) {
        RenkSeed.ServiceLibrary.IPlotService.GeoLocateCity(plot, succeededCallback, failedCallback, userContext);
    },

    PlotReport: function(plot, succeededCallback, failedCallback, userContext) {
        RenkSeed.ServiceLibrary.IPlotService.PlotReport(plot, succeededCallback, failedCallback, userContext);
    },

    dispose: function() {
    }
}

RenkSeed.Application.Web.Scripts.PlotServiceClient.registerClass('RenkSeed.Application.Web.Scripts.PlotServiceClient', null, Sys.IDisposable);

if (typeof(Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();
