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

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