예제 #1
0
파일: Report.cs 프로젝트: kwangphys/QT
        public Report(string account)
        {
            _account = account;
            string query = getQueryWithAccount();

            query += @" order by e.timestamp, o.id";
            DataTable dt = _db.runQuery(query);

            _startDate = DateTime.MinValue;
            _endDate   = DateTime.MaxValue;
            processRawData(dt);
        }