public QueryResult(QueryResultEnum error, Object obj = null)
 {
     this.Error  = error;
     this.Object = obj;
 }
 public QueryResultTyped(QueryResultEnum error, T obj = default)
 {
     this.Error  = error;
     this.Object = obj;
 }