public override ReturnValue getEntity(string sql, Transaction trans) { PGateway _gateway = new PGateway(this, trans); ReturnValue result = _gateway.getEntity(sql); return(result); }
public override ReturnValue getEntity(string sql) { PGateway _gateway = new PGateway(this); ReturnValue result = _gateway.getEntity(sql); //SaveLog(result, _gateway.TableName, "getEntity"); return(result); }