//------------------------------------------------------------------------------ public virtual void GetProfileGameDataAttributeListByUuid() { string _uuid = (string)util.GetParamValue(_context, "uuid"); ResponseProfileGameDataAttributeList wrapper = new ResponseProfileGameDataAttributeList(); wrapper.message = "Success"; wrapper.code = 0; wrapper.action = "profile-game-data-attribute/get/by-uuid"; List<ProfileGameDataAttribute> objs = api.GetProfileGameDataAttributeListByUuid( _uuid ); // get data wrapper.data = objs; util.SerializeTypeToResponse(_format, _context, wrapper); }
//------------------------------------------------------------------------------ public virtual void BrowseProfileGameDataAttributeListByFilter() { ResponseProfileGameDataAttributeList wrapper = new ResponseProfileGameDataAttributeList(); wrapper.message = "Success"; wrapper.code = 0; wrapper.action = "profile-game-data-attribute/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"); ProfileGameDataAttributeResult result = api.BrowseProfileGameDataAttributeListByFilter(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 GetProfileGameDataAttributeListByProfileIdByGameIdByCode() { string _profile_id = (string)util.GetParamValue(_context, "profile_id"); string _game_id = (string)util.GetParamValue(_context, "game_id"); string _code = (string)util.GetParamValue(_context, "code"); ResponseProfileGameDataAttributeList wrapper = new ResponseProfileGameDataAttributeList(); wrapper.message = "Success"; wrapper.code = 0; wrapper.action = "profile-game-data-attribute/get/by-profile-id/by-game-id/by-code"; List<ProfileGameDataAttribute> objs = api.GetProfileGameDataAttributeListByProfileIdByGameIdByCode( _profile_id , _game_id , _code ); // get data wrapper.data = objs; util.SerializeTypeToResponse(_format, _context, wrapper); }