Example #1
0
        /// <summary>
        /// 获取未打包上传的监控日志数量
        /// </summary>
        /// <param name="Customer_Id">客户标识</param>
        /// <param name="User_Id">用户标识</param>
        /// <param name="Unit_Id">组织标识</param>
        /// <returns>未打包监控日志数量</returns>
        public int GetMonitorLogNotPackagedCount(string Customer_Id, string User_Id, string Unit_Id)
        {
            LoggingSessionInfo loggingSessionInfo = GetLoggingSessionInfo(Customer_Id, User_Id, Unit_Id);
            int iCount = 0;
            MonitorLogService mlService = new MonitorLogService();

            iCount = mlService.GetMonitorLogNotPackagedCount(loggingSessionInfo);
            return(iCount);
        }