Example #1
0
        //------------------------------------------------------------------------------
        public virtual void GetGameProfileStatisticListByUuid()
        {
            string _uuid = (string)util.GetParamValue(_context, "uuid");

            ResponseGameProfileStatisticList wrapper = new ResponseGameProfileStatisticList();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "game-profile-statistic/get/by-uuid";

            List<GameProfileStatistic> objs = api.GetGameProfileStatisticListByUuid(
                _uuid
            );

            // get data
            wrapper.data = objs;

            util.SerializeTypeToResponse(_format, _context, wrapper);
        }
Example #2
0
        //------------------------------------------------------------------------------
        public virtual void BrowseGameProfileStatisticListByFilter()
        {
            ResponseGameProfileStatisticList wrapper = new ResponseGameProfileStatisticList();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "game-profile-statistic/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");

            GameProfileStatisticResult result = api.BrowseGameProfileStatisticListByFilter(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);
        }
Example #3
0
        //------------------------------------------------------------------------------
        public virtual void GetGameProfileStatisticListByProfileIdByGameIdByTimestamp()
        {
            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"));

            ResponseGameProfileStatisticList wrapper = new ResponseGameProfileStatisticList();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "game-profile-statistic/get/by-profile-id/by-game-id/by-timestamp";

            List<GameProfileStatistic> objs = api.GetGameProfileStatisticListByProfileIdByGameIdByTimestamp(
                _profile_id
                , _game_id
                , _timestamp
            );

            // get data
            wrapper.data = objs;

            util.SerializeTypeToResponse(_format, _context, wrapper);
        }