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

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

            bool completed = api.DelProfileOfferByUuid(

                _uuid
            );

            // get data
            wrapper.data = completed;

            util.SerializeTypeToResponse(_format, _context, wrapper);
        }
Beispiel #2
0
        //------------------------------------------------------------------------------
        public virtual void SetProfileOfferByUuid()
        {
            ResponseProfileOfferBool wrapper = new ResponseProfileOfferBool();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "profile-offer/set/by-uuid";

            ProfileOffer obj = new ProfileOffer();

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

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

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

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

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

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

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

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

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

            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 _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.SetProfileOfferByUuid(obj);

            util.SerializeTypeJSONToResponse(_context, wrapper);
        }