Esempio n. 1
0
 public xAPIStatement(string a, string v, string o)
 {
     this.actor = new xAPIActor( a);
     this._object = new xAPIObject(o);
     this.verb = new xAPIVerb(v);
 }
Esempio n. 2
0
 public xAPIStatement(string a, string v, string o)
 {
     this.actor   = new xAPIActor(a);
     this._object = new xAPIObject(o);
     this.verb    = new xAPIVerb(v);
 }
Esempio n. 3
0
 public xAPIStatement(xAPIActor a, xAPIVerb v, xAPIObject o)
 {
     this.actor = a;
     this._object = o;
     this.verb = v;
 }
Esempio n. 4
0
 public xAPIStatement(xAPIActor a, xAPIVerb v, xAPIObject o)
 {
     this.actor   = a;
     this._object = o;
     this.verb    = v;
 }