Example #1
0
        public DataSet ExecuteSQLCommand(QueryLunchDTO dto)
        {
            DataSet dsResult = null;

            QueryLunchDAO dao = new QueryLunchDAO(CommonLib.Common.CurrentDatabase);

            dsResult = dao.ExecuteSQLCommand(dto);

            return(dsResult);
        }
Example #2
0
        public DataTable GetQueryList()
        {
            DataTable dtResult = null;


            QueryLunchDAO dao = new QueryLunchDAO(CommonLib.Common.CurrentDatabase);

            dtResult = dao.GetQueryList();


            return(dtResult);
        }