Пример #1
0
        //------------------------------------------------------------------------------
        public virtual void DelOfferCategoryByCodeByOrgIdByTypeId()
        {
            string _code = (string)util.GetParamValue(_context, "code");
            string _org_id = (string)util.GetParamValue(_context, "org_id");
            string _type_id = (string)util.GetParamValue(_context, "type_id");

            ResponseOfferCategoryBool wrapper = new ResponseOfferCategoryBool();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "offer-category/del/by-code/by-org-id/by-type-id";

            bool completed = api.DelOfferCategoryByCodeByOrgIdByTypeId(

                _code
                , _org_id
                , _type_id
            );

            // get data
            wrapper.data = completed;

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

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

            bool completed = api.DelOfferCategoryByUuid(

                _uuid
            );

            // get data
            wrapper.data = completed;

            util.SerializeTypeToResponse(_format, _context, wrapper);
        }
Пример #3
0
        //------------------------------------------------------------------------------
        public virtual void SetOfferCategoryByUuid()
        {
            ResponseOfferCategoryBool wrapper = new ResponseOfferCategoryBool();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "offer-category/set/by-uuid";

            OfferCategory obj = new OfferCategory();

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

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

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

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

            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 _data = util.GetParamValue(_context, "data");
            if(!String.IsNullOrEmpty(_data))
                obj.data = (string)_data;

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

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

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

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

            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;

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

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

            util.SerializeTypeJSONToResponse(_context, wrapper);
        }