public xAPIStatement(string a, string v, string o) { this.actor = new xAPIActor( a); this._object = new xAPIObject(o); this.verb = new xAPIVerb(v); }
public xAPIStatement(string a, string v, string o) { this.actor = new xAPIActor(a); this._object = new xAPIObject(o); this.verb = new xAPIVerb(v); }
public xAPIStatement(xAPIActor a, xAPIVerb v, xAPIObject o) { this.actor = a; this._object = o; this.verb = v; }