var PlayerInfoController=function() {
PlayerInfoController.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PlayerInfoController.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return PlayerInfoController._staticInstance.get_path();},
Edit:function(input,type,succeededCallback, failedCallback, userContext) {
/// <param name="input" type="String">System.String</param>
/// <param name="type" 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(), 'Edit',true,{input:input,type:type},succeededCallback,failedCallback,userContext); },
Submit:function(input,type,pokerNetworkId,playerId,succeededCallback, failedCallback, userContext) {
/// <param name="input" type="String">System.String</param>
/// <param name="type" type="String">System.String</param>
/// <param name="pokerNetworkId" type="Number">System.Int32</param>
/// <param name="playerId" 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(), 'Submit',true,{input:input,type:type,pokerNetworkId:pokerNetworkId,playerId:playerId},succeededCallback,failedCallback,userContext); },
GetHistoryInfo:function(pokerNetworkId,playerId,infoType,succeededCallback, failedCallback, userContext) {
/// <param name="pokerNetworkId" type="Number">System.Int32</param>
/// <param name="playerId" type="Number">System.Int32</param>
/// <param name="infoType" 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(), 'GetHistoryInfo',true,{pokerNetworkId:pokerNetworkId,playerId:playerId,infoType:infoType},succeededCallback,failedCallback,userContext); }}
PlayerInfoController.registerClass('PlayerInfoController',Sys.Net.WebServiceProxy);
PlayerInfoController._staticInstance = new PlayerInfoController();
PlayerInfoController.set_path = function(value) {
PlayerInfoController._staticInstance.set_path(value); }
PlayerInfoController.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return PlayerInfoController._staticInstance.get_path();}
PlayerInfoController.set_timeout = function(value) {
PlayerInfoController._staticInstance.set_timeout(value); }
PlayerInfoController.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return PlayerInfoController._staticInstance.get_timeout(); }
PlayerInfoController.set_defaultUserContext = function(value) { 
PlayerInfoController._staticInstance.set_defaultUserContext(value); }
PlayerInfoController.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return PlayerInfoController._staticInstance.get_defaultUserContext(); }
PlayerInfoController.set_defaultSucceededCallback = function(value) { 
 PlayerInfoController._staticInstance.set_defaultSucceededCallback(value); }
PlayerInfoController.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return PlayerInfoController._staticInstance.get_defaultSucceededCallback(); }
PlayerInfoController.set_defaultFailedCallback = function(value) { 
PlayerInfoController._staticInstance.set_defaultFailedCallback(value); }
PlayerInfoController.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return PlayerInfoController._staticInstance.get_defaultFailedCallback(); }
PlayerInfoController.set_path("/sitemap/PlayerInfoController.asmx");
PlayerInfoController.Edit= function(input,type,onSuccess,onFailed,userContext) {
/// <param name="input" type="String">System.String</param>
/// <param name="type" 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>
PlayerInfoController._staticInstance.Edit(input,type,onSuccess,onFailed,userContext); }
PlayerInfoController.Submit= function(input,type,pokerNetworkId,playerId,onSuccess,onFailed,userContext) {
/// <param name="input" type="String">System.String</param>
/// <param name="type" type="String">System.String</param>
/// <param name="pokerNetworkId" type="Number">System.Int32</param>
/// <param name="playerId" 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>
PlayerInfoController._staticInstance.Submit(input,type,pokerNetworkId,playerId,onSuccess,onFailed,userContext); }
PlayerInfoController.GetHistoryInfo= function(pokerNetworkId,playerId,infoType,onSuccess,onFailed,userContext) {
/// <param name="pokerNetworkId" type="Number">System.Int32</param>
/// <param name="playerId" type="Number">System.Int32</param>
/// <param name="infoType" 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>
PlayerInfoController._staticInstance.GetHistoryInfo(pokerNetworkId,playerId,infoType,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(PlayerInfo) === 'undefined') {
var PlayerInfo=gtc("PlayerInfo");
PlayerInfo.registerClass('PlayerInfo');
}
if (typeof(HistoryInfo) === 'undefined') {
var HistoryInfo=gtc("HistoryInfo");
HistoryInfo.registerClass('HistoryInfo');
}
