예제 #1
0
        public OccupancyReport(CustomerConfig customerCfg, SensorAndPaymentReportEngine.CommonReportParameters reportParams)
            : base(customerCfg, reportParams)
        {
            _ReportName = "Occupancy Report";
            numberOfHourlyCategories = 5;

            if (this._ReportParams.IncludeHourlyStatistics == false)
            {
                numberOfHourlyCategories = 0;
            }
        }
예제 #2
0
 public ParkingAndOverstayEnforcementDetailsReport(CustomerConfig customerCfg, SensorAndPaymentReportEngine.CommonReportParameters reportParams)
     : base(customerCfg, reportParams)
 {
     _ReportName = "Parking and Overstay Enforcement Details Report";
     numberOfHourlyCategories = 0;
 }