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

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

            return(data);
        }
Example #2
0
 public virtual bool SetProfileChannelByUuid(ProfileChannel obj)
 {
     return act.SetProfileChannelByUuid(DEFAULT_SET_TYPE, obj);
 }
Example #3
0
 public virtual bool SetProfileChannelByUuid(SetType set_type, ProfileChannel obj)
 {
     return act.SetProfileChannelByUuid(ConvertSetTypeToString(set_type), obj);
 }
Example #4
0
 //------------------------------------------------------------------------------
 public virtual bool SetProfileChannelByUuid(string set_type, ProfileChannel obj)
 {
     return act.SetProfileChannelByUuid(set_type, obj);
 }
Example #5
0
        //------------------------------------------------------------------------------
        public virtual bool SetProfileChannelByUuid(string set_type, ProfileChannel 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("@channel_id", obj.channel_id));
            parameters.Add(new SqlParameter("@uuid", obj.uuid));
            parameters.Add(new SqlParameter("@date_modified", obj.date_modified));
            parameters.Add(new SqlParameter("@active", obj.active));
            parameters.Add(new SqlParameter("@date_created", obj.date_created));
            parameters.Add(new SqlParameter("@profile_id", obj.profile_id));
            parameters.Add(new SqlParameter("@type", obj.type));

            try {
                return (bool)data.ExecuteScalar(
                BasePlatformData.connectionString
                , CommandType.StoredProcedure
                , "usp_profile_channel_set_by_uuid"
                , parameters
                );
            }
            catch (Exception e){
                log.Error(e);
                return false;
            }
        }
Example #6
0
        //------------------------------------------------------------------------------
        public virtual void SetProfileChannelByUuid()
        {
            ResponseProfileChannelBool wrapper = new ResponseProfileChannelBool();
            wrapper.message = "Success";
            wrapper.code = 0;
            wrapper.action = "profile-channel/set/by-uuid";

            ProfileChannel obj = new ProfileChannel();

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

            string _channel_id = util.GetParamValue(_context, "channel_id");
            if(!String.IsNullOrEmpty(_channel_id))
                obj.channel_id = (string)_channel_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 _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 _profile_id = util.GetParamValue(_context, "profile_id");
            if(!String.IsNullOrEmpty(_profile_id))
                obj.profile_id = (string)_profile_id;

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

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

            util.SerializeTypeJSONToResponse(_context, wrapper);
        }
Example #7
0
        //------------------------------------------------------------------------------
        public virtual bool SetProfileChannelByChannelIdByProfileId(string set_type, ProfileChannel obj)
        {
            List<NpgsqlParameter> parameters
                = new List<NpgsqlParameter>();
            parameters.Add(new NpgsqlParameter("in_set_type", set_type));
            parameters.Add(new NpgsqlParameter("in_status", obj.status));
            parameters.Add(new NpgsqlParameter("in_channel_id", obj.channel_id));
            parameters.Add(new NpgsqlParameter("in_uuid", obj.uuid));
            parameters.Add(new NpgsqlParameter("in_date_modified", obj.date_modified));
            parameters.Add(new NpgsqlParameter("in_active", obj.active));
            parameters.Add(new NpgsqlParameter("in_date_created", obj.date_created));
            parameters.Add(new NpgsqlParameter("in_profile_id", obj.profile_id));
            parameters.Add(new NpgsqlParameter("in_type", obj.type));

            try {
                return Convert.ToBoolean(data.ExecuteScalar(
                BasePlatformData.connectionString
                , CommandType.StoredProcedure
                , "usp_profile_channel_set_channel_id_profile_id"
                , parameters
                ));
            }
            catch (Exception e){
                log.Error(e);
                return false;
            }
        }
Example #8
0
 public virtual bool SetProfileChannelByChannelIdByProfileId(string set_type, ProfileChannel obj)
 {
     return data.SetProfileChannelByChannelIdByProfileId(set_type, obj);
 }
Example #9
0
        public virtual ProfileChannel FillProfileChannel(DataRow dr)
        {
            ProfileChannel obj = new ProfileChannel();

            if (dr["status"] != null)
                    obj.status = dataType.FillDataString(dr, "status");
            if (dr["channel_id"] != null)
                    obj.channel_id = dataType.FillDataString(dr, "channel_id");
            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["active"] != null)
                    obj.active = dataType.FillDataBool(dr, "active");
            if (dr["date_created"] != null)
                    obj.date_created = dataType.FillDataDateTime(dr, "date_created");
            if (dr["profile_id"] != null)
                    obj.profile_id = dataType.FillDataString(dr, "profile_id");
            if (dr["type"] != null)
                    obj.type = dataType.FillDataString(dr, "type");

            return obj;
        }