public List <ProfileGameLocation> GetList(List <Dictionary <string, object> > dictList) { data.Clear(); foreach (Dictionary <string, object> dict in dictList) { foreach (KeyValuePair <string, object> obj in dict) { ProfileGameLocation objectValue = (ProfileGameLocation)obj.Value; objectValue.FillFromDictionary(dict); data.Add(objectValue); } } return(data); }
public virtual bool SetProfileGameLocationByUuid(ProfileGameLocation obj) { return act.SetProfileGameLocationByUuid(DEFAULT_SET_TYPE, obj); }
public virtual bool SetProfileGameLocationByUuid(SetType set_type, ProfileGameLocation obj) { return act.SetProfileGameLocationByUuid(ConvertSetTypeToString(set_type), obj); }
//------------------------------------------------------------------------------ public virtual bool SetProfileGameLocationByUuid(string set_type, ProfileGameLocation obj) { return act.SetProfileGameLocationByUuid(set_type, obj); }
//------------------------------------------------------------------------------ public virtual bool SetProfileGameLocationByUuid(string set_type, ProfileGameLocation 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("@game_location_id", obj.game_location_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)); parameters.Add(new SqlParameter("@type_id", obj.type_id)); try { return (bool)data.ExecuteScalar( BaseGamingData.connectionString , CommandType.StoredProcedure , "usp_profile_game_location_set_by_uuid" , parameters ); } catch (Exception e){ log.Error(e); return false; } }
public virtual ProfileGameLocation FillProfileGameLocation(DataRow dr) { ProfileGameLocation obj = new ProfileGameLocation(); if (dr["status"] != null) obj.status = dataType.FillDataString(dr, "status"); if (dr["game_location_id"] != null) obj.game_location_id = dataType.FillDataString(dr, "game_location_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"); if (dr["type_id"] != null) obj.type_id = dataType.FillDataString(dr, "type_id"); return obj; }
//------------------------------------------------------------------------------ public virtual void SetProfileGameLocationByUuid() { ResponseProfileGameLocationBool wrapper = new ResponseProfileGameLocationBool(); wrapper.message = "Success"; wrapper.code = 0; wrapper.action = "profile-game-location/set/by-uuid"; ProfileGameLocation obj = new ProfileGameLocation(); string _status = util.GetParamValue(_context, "status"); if(!String.IsNullOrEmpty(_status)) obj.status = (string)_status; string _game_location_id = util.GetParamValue(_context, "game_location_id"); if(!String.IsNullOrEmpty(_game_location_id)) obj.game_location_id = (string)_game_location_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; string _type_id = util.GetParamValue(_context, "type_id"); if(!String.IsNullOrEmpty(_type_id)) obj.type_id = (string)_type_id; // get data wrapper.data = api.SetProfileGameLocationByUuid(obj); util.SerializeTypeJSONToResponse(_context, wrapper); }