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