Exemple #1
0
        public List <ProfileRewardPoints> GetList(List <Dictionary <string, object> > dictList)
        {
            data.Clear();

            foreach (Dictionary <string, object> dict in dictList)
            {
                foreach (KeyValuePair <string, object> obj in dict)
                {
                    ProfileRewardPoints objectValue = (ProfileRewardPoints)obj.Value;
                    objectValue.FillFromDictionary(dict);
                    data.Add(objectValue);
                }
            }

            return(data);
        }
Exemple #2
0
 public virtual bool SetProfileRewardPointsByUuid(ProfileRewardPoints obj)
 {
     return act.SetProfileRewardPointsByUuid(DEFAULT_SET_TYPE, obj);
 }
Exemple #3
0
 public virtual bool SetProfileRewardPointsByUuid(SetType set_type, ProfileRewardPoints obj)
 {
     return act.SetProfileRewardPointsByUuid(ConvertSetTypeToString(set_type), obj);
 }
Exemple #4
0
 //------------------------------------------------------------------------------
 public virtual bool SetProfileRewardPointsByUuid(string set_type, ProfileRewardPoints obj)
 {
     return act.SetProfileRewardPointsByUuid(set_type, obj);
 }
Exemple #5
0
        //------------------------------------------------------------------------------
        public virtual bool SetProfileRewardPointsByUuid(string set_type, ProfileRewardPoints obj)
        {
            List<SqlParameter> parameters
                = new List<SqlParameter>();
            parameters.Add(new SqlParameter("@set_type", set_type));
            parameters.Add(new SqlParameter("@status", obj.status));
            parameters.Add(new SqlParameter("@profile_id", obj.profile_id));
            parameters.Add(new SqlParameter("@active", obj.active));
            parameters.Add(new SqlParameter("@data", obj.data));
            parameters.Add(new SqlParameter("@uuid", obj.uuid));
            parameters.Add(new SqlParameter("@date_modified", obj.date_modified));
            parameters.Add(new SqlParameter("@org_id", obj.org_id));
            parameters.Add(new SqlParameter("@channel_id", obj.channel_id));
            parameters.Add(new SqlParameter("@points", obj.points));
            parameters.Add(new SqlParameter("@date_created", obj.date_created));
            parameters.Add(new SqlParameter("@type", obj.type));

            try {
                return (bool)data.ExecuteScalar(
                BaseGamingData.connectionString
                , CommandType.StoredProcedure
                , "usp_profile_reward_points_set_by_uuid"
                , parameters
                );
            }
            catch (Exception e){
                log.Error(e);
                return false;
            }
        }
Exemple #6
0
        public virtual ProfileRewardPoints FillProfileRewardPoints(DataRow dr)
        {
            ProfileRewardPoints obj = new ProfileRewardPoints();

            if (dr["status"] != null)
                    obj.status = dataType.FillDataString(dr, "status");
            if (dr["profile_id"] != null)
                    obj.profile_id = dataType.FillDataString(dr, "profile_id");
            if (dr["active"] != null)
                    obj.active = dataType.FillDataBool(dr, "active");
            if (dr["data"] != null)
                    obj.data = dataType.FillDataString(dr, "data");
            if (dr["uuid"] != null)
                    obj.uuid = dataType.FillDataString(dr, "uuid");
            if (dr["date_modified"] != null)
                    obj.date_modified = dataType.FillDataDateTime(dr, "date_modified");
            if (dr["org_id"] != null)
                    obj.org_id = dataType.FillDataString(dr, "org_id");
            if (dr["channel_id"] != null)
                    obj.channel_id = dataType.FillDataString(dr, "channel_id");
            if (dr["points"] != null)
                    obj.points = dataType.FillDataInt(dr, "points");
            if (dr["date_created"] != null)
                    obj.date_created = dataType.FillDataDateTime(dr, "date_created");
            if (dr["type"] != null)
                    obj.type = dataType.FillDataString(dr, "type");

            return obj;
        }
Exemple #7
0
        //------------------------------------------------------------------------------
        public virtual void SetProfileRewardPointsByUuid()
        {
            ResponseProfileRewardPointsBool wrapper = new ResponseProfileRewardPointsBool();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "profile-reward-points/set/by-uuid";

            ProfileRewardPoints obj = new ProfileRewardPoints();

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

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

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

            string _points = util.GetParamValue(_context, "points");
            if(!String.IsNullOrEmpty(_points))
                obj.points = Convert.ToInt32(_points);

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

            util.SerializeTypeJSONToResponse(_context, wrapper);
        }