//------------------------------------------------------------------------------ public virtual void GetGameProfileStatisticItemListByUuid() { string _uuid = (string)util.GetParamValue(_context, "uuid"); ResponseGameProfileStatisticItemList wrapper = new ResponseGameProfileStatisticItemList(); wrapper.message = "Success"; wrapper.code = 0; wrapper.action = "game-profile-statistic-item/get/by-uuid"; List<GameProfileStatisticItem> objs = api.GetGameProfileStatisticItemListByUuid( _uuid ); // get data wrapper.data = objs; util.SerializeTypeToResponse(_format, _context, wrapper); }
//------------------------------------------------------------------------------ public virtual void BrowseGameProfileStatisticItemListByFilter() { ResponseGameProfileStatisticItemList wrapper = new ResponseGameProfileStatisticItemList(); wrapper.message = "Success"; wrapper.code = 0; wrapper.action = "game-profile-statistic-item/browse/by-filter"; SearchFilter obj = new SearchFilter(); obj.page = Convert.ToInt32(util.GetParamValue(_context, "page")); obj.page_size = Convert.ToInt32(util.GetParamValue(_context, "page-size")); obj.filter = util.GetParamValue(_context, "filter"); GameProfileStatisticItemResult result = api.BrowseGameProfileStatisticItemListByFilter(obj); wrapper.info.Add("total_rows", result.total_rows); wrapper.info.Add("total_pages", result.total_pages); wrapper.info.Add("page", result.page); wrapper.info.Add("page_size", result.page_size); // get data wrapper.data = result.data; util.SerializeTypeToResponse(_format, _context, wrapper); }
//------------------------------------------------------------------------------ public virtual void GetGameProfileStatisticItemListByProfileIdByGameIdByTimestamp() { string _profile_id = (string)util.GetParamValue(_context, "profile_id"); string _game_id = (string)util.GetParamValue(_context, "game_id"); float _timestamp = float.Parse(util.GetParamValue(_context, "timestamp")); ResponseGameProfileStatisticItemList wrapper = new ResponseGameProfileStatisticItemList(); wrapper.message = "Success"; wrapper.code = 0; wrapper.action = "game-profile-statistic-item/get/by-profile-id/by-game-id/by-timestamp"; List<GameProfileStatisticItem> objs = api.GetGameProfileStatisticItemListByProfileIdByGameIdByTimestamp( _profile_id , _game_id , _timestamp ); // get data wrapper.data = objs; util.SerializeTypeToResponse(_format, _context, wrapper); }