Пример #1
0
        //------------------------------------------------------------------------------
        public virtual void SetProfileGameByUuid()
        {
            ResponseProfileGameBool wrapper = new ResponseProfileGameBool();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "profile-game/set/by-uuid";

            ProfileGame obj = new ProfileGame();

            string _status = util.GetParamValue(_context, "status");
            if(!String.IsNullOrEmpty(_status))
                obj.status = (string)_status;

            string _type_id = util.GetParamValue(_context, "type_id");
            if(!String.IsNullOrEmpty(_type_id))
                obj.type_id = (string)_type_id;

            string _profile_id = util.GetParamValue(_context, "profile_id");
            if(!String.IsNullOrEmpty(_profile_id))
                obj.profile_id = (string)_profile_id;

            string _profile_iteration = util.GetParamValue(_context, "profile_iteration");
            if(!String.IsNullOrEmpty(_profile_iteration))
                obj.profile_iteration = (string)_profile_iteration;

            string _game_profile = util.GetParamValue(_context, "game_profile");
            if(!String.IsNullOrEmpty(_game_profile))
                obj.game_profile = (string)_game_profile;

            string _active = util.GetParamValue(_context, "active");
            if(!String.IsNullOrEmpty(_active))
                obj.active = Convert.ToBoolean(_active);

            string _game_id = util.GetParamValue(_context, "game_id");
            if(!String.IsNullOrEmpty(_game_id))
                obj.game_id = (string)_game_id;

            string _uuid = util.GetParamValue(_context, "uuid");
            if(!String.IsNullOrEmpty(_uuid))
                obj.uuid = (string)_uuid;

            string _date_modified = util.GetParamValue(_context, "date_modified");
            if(!String.IsNullOrEmpty(_date_modified))
                obj.date_modified = Convert.ToDateTime(_date_modified);
            else
                obj.date_modified = DateTime.Now;

            string _profile_version = util.GetParamValue(_context, "profile_version");
            if(!String.IsNullOrEmpty(_profile_version))
                obj.profile_version = (string)_profile_version;

            string _date_created = util.GetParamValue(_context, "date_created");
            if(!String.IsNullOrEmpty(_date_created))
                obj.date_created = Convert.ToDateTime(_date_created);
            else
                obj.date_created = DateTime.Now;

            string _type = util.GetParamValue(_context, "type");
            if(!String.IsNullOrEmpty(_type))
                obj.type = (string)_type;

            // get data
            wrapper.data = api.SetProfileGameByUuid(obj);

            util.SerializeTypeJSONToResponse(_context, wrapper);
        }
Пример #2
0
        //------------------------------------------------------------------------------
        public virtual void DelProfileGameByUuid()
        {
            string _uuid = (string)util.GetParamValue(_context, "uuid");

            ResponseProfileGameBool wrapper = new ResponseProfileGameBool();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "profile-game/del/by-uuid";

            bool completed = api.DelProfileGameByUuid(

                _uuid
            );

            // get data
            wrapper.data = completed;

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