public List<Accident> GetListByDay(DateTime Date, int DeviceNr)
 {
     //List<Accident> L1 = new List<Accident>();
     //return L1;
     Statistics stat1 = new Statistics();
     return stat1.getListByDateFromDB(Date, DeviceNr);
 }