Exemplo n.º 1
0
 public QueryResult(QueryResultEnum error, Object obj = null)
 {
     this.Error  = error;
     this.Object = obj;
 }
Exemplo n.º 2
0
 public QueryResultTyped(QueryResultEnum error, T obj = default)
 {
     this.Error  = error;
     this.Object = obj;
 }