public static void insertComptage(ComptageViewModel p) { ComptageDAL.insertComptage(new ComptageDAO(p.id, p.idEtude, p.idPlage, p.date, p.NbPersonnes, p.Coord1Long, p.Coord1Larg, p.Coord2Long, p.Coord2Larg, p.Coord3Long, p.Coord3Larg, p.Coord4Long, p.Coord4Larg)); }
public static ComptageDAO getComptage(int idPersonne) { ComptageDAO p = ComptageDAL.getComptage(idPersonne); return(p); }
public static void supprimerComptage(int id) { ComptageDAL.supprimerComptage(id); }
public static ObservableCollection <ComptageDAO> listeComptages() { ObservableCollection <ComptageDAO> l = ComptageDAL.selectComptages(); return(l); }