public ReqMarketing GetNewMarketingStatus() { ReqMarketing component = new ReqMarketing(); component.GetNewStatus(); return(component); }
public ReqMarketing GetContinueLoginAward() { ReqMarketing component = new ReqMarketing(); component.GetContinueLoginAward(); return(component); }
private void reqGetLevelAwared(int level) { if (!this.isRequestingServer) { this.isRequestingServer = true; this.reqGetAward = ServerRequestManager.instance.GetReachLevelAward(level); this.reqGetAward.GetReachLevelAwardSuccess += new EventHandler<EventArgs>(this.OnSuccess); this.reqGetAward.GetReachLevelAwardFail += new EventHandler<EventArgs>(this.OnFail); } }
private void reqGetLoginAwared() { if (!this.isRequestingServer) { this.isRequestingServer = true; this.reqGetAward = ServerRequestManager.instance.GetContinueLoginAward(); this.reqGetAward.GetContinueLoginAwardSuccess += new EventHandler<EventArgs>(this.OnSuccess); this.reqGetAward.GetContinueLoginAwardFail += new EventHandler<EventArgs>(this.OnFail); } }
public ReqMarketing GetNewMarketingStatus() { ReqMarketing component = new ReqMarketing(); component.GetNewStatus(); return component; }
public ReqMarketing GetContinueLoginAward() { ReqMarketing component = new ReqMarketing(); component.GetContinueLoginAward(); return component; }