Exemplo n.º 1
0
 void HourStatistic()
 {
     lastTimeType = LastTimeType.hour;
     var date = dtpStatistic.Value.Date;
     StatisticFun(24, date, (d) => d.AddHours(1));
 }
Exemplo n.º 2
0
 void WeekStatisic()
 {
     lastTimeType = LastTimeType.week;
     var date = dtpStatistic.Value.Date;
     date = date.AddDays(-7 * 8);
     StatisticFun(8, date, d => d.AddDays(7));
 }
Exemplo n.º 3
0
 void DayStatistic()
 {
     lastTimeType = LastTimeType.day;
     var date = dtpStatistic.Value.Date;
     StatisticFun(8, date.AddDays(-7), d => d.AddDays(1));
 }