public bool updateStatistique(StatistiqueDTO h)
        {
            Statistique newh = new Statistique {
                id = h.Id, date = h.Date, type = (int)h.Type, position = h.Position
            };

            return(Update <Statistique>(newh, xg => xg.id == newh.id && xg.type == newh.type && xg.date == newh.date));
        }
 partial void UpdateStatistique(Statistique instance);
 partial void DeleteStatistique(Statistique instance);
 partial void InsertStatistique(Statistique instance);