public override ReturnValue getEntityList(string sql, Transaction trans) { NGateway _gateway = new NGateway(this, trans); ReturnValue result = _gateway.getEntityList(sql); return(result); }
public override ReturnValue getEntity(string sql) { NGateway _gateway = new NGateway(this); ReturnValue result = _gateway.getEntity(sql); //SaveLog(result, _gateway.TableName, "getEntity"); return(result); }
protected virtual ReturnValue Save(string sql) { ReturnValue _result = new ReturnValue(); NGateway _gateway = new NGateway(this); _result = _gateway.Save(sql); return(_result); }
public override ReturnValue ExecSql(string sql) { ReturnValue _result = new ReturnValue(); NGateway _gateway = new NGateway(this); _result = _gateway.ExecSql(sql); return(_result); }
public override ReturnValue ExecSql(string sql, Transaction trans) { ReturnValue _result = new ReturnValue(); NGateway _gateway = new NGateway(this, trans); _result = _gateway.ExecSql(sql); if (_result.Success == false) { if (trans != null) { trans.RollbackTransaction(); } return(_result); } return(_result); }
protected virtual ReturnValue Save(string sql, Transaction trans) { ReturnValue _result = new ReturnValue(); NGateway _gateway = new NGateway(this, trans); _result = _gateway.Save(sql); if (_result.Success == false) { if (trans != null) { trans.RollbackTransaction(); } return(_result); } return(_result); }