/// <summary>
 /// Creates a Statement with the minimum suggested properties
 /// </summary>
 /// <param name="actor">The actor in this statement</param>
 /// <param name="verb">The verb in this statement</param>
 /// <param name="statementTarget">The target of this statement</param>
 public Statement(Actor actor, StatementVerb verb, StatementTarget statementTarget)
 {
     this.actor = actor;
     this.verb = verb;
     this._object = statementTarget;
 }
 /// <summary>
 /// Creates a Statement with the minimum suggested properties
 /// </summary>
 /// <param name="actor">The actor in this statement</param>
 /// <param name="verb">The verb in this statement</param>
 /// <param name="statementTarget">The target of this statement</param>
 public Statement(Actor actor, StatementVerb verb, StatementTarget statementTarget)
 {
     this.actor   = actor;
     this.verb    = verb;
     this._object = statementTarget;
 }