Beispiel #1
0
        internal override string ForTable(PrintOptions printOptions = null)
        {
            string str = $"<tr class=\"statGroup\"><th colspan=\"2\"><a class=\"loadChart\" href=\"/chartdata?dataset=fuelstats{(!string.IsNullOrEmpty(printOptions.AirlineName) ? "&airline=" + printOptions.AirlineName : string.Empty)}\" rel=\"#dialog\">{name}</a></th></tr>\n";

            str += fuelRequested.ForTable(printOptions, true);
            str += fuelDelivered.ForTable(printOptions);
            str += fuelingFailures.ForTable(printOptions, true);
            str += planesRefueled.ForTable(printOptions);
            str += StatLoader.airportData.fuelStats.avgFuelPrice.ForTable(printOptions, true);
            return(str);
        }
Beispiel #2
0
        internal override string ForTable(PrintOptions printOptions = null)
        {
            string str = $"<tr class=\"statGroup\"><th colspan=\"2\"><a class=\"loadChart\" href=\"/chartdata?dataset=luggagestats{(!string.IsNullOrEmpty(printOptions.AirlineName) ? "&airline=" + printOptions.AirlineName : string.Empty)}\" rel=\"#dialog\">{name}</a></th></tr>\n";

            str += arrivingBags.ForTable(printOptions, true);
            str += bagsUnloaded.ForTable(printOptions);
            str += departingBags.ForTable(printOptions, true);
            str += bagsLoaded.ForTable(printOptions);
            str += lostBags.ForTable(printOptions, true);
            str += timeLoadingBags.ForTable(printOptions);
            //str += timeUnloadingBags.ForTable(printOptions);
            return(str);
        }
Beispiel #3
0
        internal override string ForTable(PrintOptions printOptions = null)
        {
            string str = $"<tr class=\"statGroup\"><th colspan=\"2\"><a class=\"loadChart\" href=\"/chartdata?dataset=paxstats{(!string.IsNullOrEmpty(printOptions.AirlineName) ? "&airline=" + printOptions.AirlineName : string.Empty)}\" rel=\"#dialog\">{name}</a></th></tr>\n";

            str += nArriving.ForTable(printOptions, true);
            str += arrPaxPerFlt.ForTable(printOptions);
            str += nSchedDep.ForTable(printOptions, true);
            str += departPaxPerFlt.ForTable(printOptions);
            str += nCheckedIn.ForTable(printOptions, true);
            str += nConnecting.ForTable(printOptions);
            str += nBoarded.ForTable(printOptions, true);
            str += nMissed.ForTable(printOptions);
            str += boardedPerFlt.ForTable(printOptions, true);
            str += timeDeplaning.ForTable(printOptions);
            str += timeBoarding.ForTable(printOptions, true);
            str += avgBoardTime.ForTable(printOptions);
            return(str);
        }