Exemplo n.º 1
0
        //------------------------------------------------------------------------------
        public virtual void GetRewardConditionListByUuid()
        {
            string _uuid = (string)util.GetParamValue(_context, "uuid");

            ResponseRewardConditionList wrapper = new ResponseRewardConditionList();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "reward-condition/get/by-uuid";

            List<RewardCondition> objs = api.GetRewardConditionListByUuid(
                _uuid
            );

            // get data
            wrapper.data = objs;

            util.SerializeTypeToResponse(_format, _context, wrapper);
        }
Exemplo n.º 2
0
        //------------------------------------------------------------------------------
        public virtual void BrowseRewardConditionListByFilter()
        {
            ResponseRewardConditionList wrapper = new ResponseRewardConditionList();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "reward-condition/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");

            RewardConditionResult result = api.BrowseRewardConditionListByFilter(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);
        }
Exemplo n.º 3
0
        //------------------------------------------------------------------------------
        public virtual void GetRewardConditionListByOrgIdByChannelIdByRewardId()
        {
            string _org_id = (string)util.GetParamValue(_context, "org_id");
            string _channel_id = (string)util.GetParamValue(_context, "channel_id");
            string _reward_id = (string)util.GetParamValue(_context, "reward_id");

            ResponseRewardConditionList wrapper = new ResponseRewardConditionList();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "reward-condition/get/by-org-id/by-channel-id/by-reward-id";

            List<RewardCondition> objs = api.GetRewardConditionListByOrgIdByChannelIdByRewardId(
                _org_id
                , _channel_id
                , _reward_id
            );

            // get data
            wrapper.data = objs;

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