public DataSet ExecuteSQLCommand(QueryLunchDTO dto) { DataSet dsResult = null; QueryLunchDAO dao = new QueryLunchDAO(CommonLib.Common.CurrentDatabase); dsResult = dao.ExecuteSQLCommand(dto); return(dsResult); }
public DataTable GetQueryList() { DataTable dtResult = null; QueryLunchDAO dao = new QueryLunchDAO(CommonLib.Common.CurrentDatabase); dtResult = dao.GetQueryList(); return(dtResult); }