Update for the tunnel graph to have the stats my month and type of flights
This commit is contained in:
@@ -56,11 +56,12 @@ namespace skydiveLogs_api.DomainBusiness
|
||||
|
||||
if (allTunnelFlights.Any())
|
||||
{
|
||||
results = allTunnelFlights.GroupBy(j => j.FlightDate.ToString("yy-MM"),
|
||||
results = allTunnelFlights.GroupBy(j => new { FlightDate = j.FlightDate.ToString("yy-MM"), j.JumpType },
|
||||
j => j,
|
||||
(groupby, tunnelFlights) => new Statistic
|
||||
{
|
||||
Label = groupby.ToString(),
|
||||
Label = groupby.FlightDate,
|
||||
Label2 = groupby.JumpType.Name,
|
||||
Nb = tunnelFlights.Sum(t => t.NbMinutes)
|
||||
})
|
||||
.ToList();
|
||||
|
||||
Reference in New Issue
Block a user