public AttitudeProduct(Attitude res, AttitudeType Id) { this._type = Id; this._motivation = res; _values = new Dictionary <int, float>(); BaseValue = res.BaseValue; }
private AttitudeProduct AddAttitude(Attitude res, AttitudeType id) { var at = new AttitudeProduct(res, id); _motivations.Add(id, at); return(at); }