示例#1
0
        public DataTable QueryReportDetailsByProject(int projectID, int userID, DateTime startDate
                                                     , DateTime endDate, string orderBy, string orderDirectioin)
        {
            this.ClearBrokenRuleMessages();
            DataTable dt = mgr.QueryReportDetailsByProject(projectID, userID, startDate, endDate, orderBy, orderDirectioin);

            this.AddBrokenRuleMessages(mgr.BrokenRuleMessages);
            return(dt);
        }