public static void insertPlage(PlageViewModel p) { PlageDAL.insertPlage(new PlageDAO(p.idPlageProperty, p.nomProperty, p.commune.idVilleProperty, p.prelevement.idprelevementProperty, p.departement.idDepartementProperty)); }
public static PlageDAO getPlage(int idPlage) { PlageDAO p = PlageDAL.getPlage(idPlage); return(p); }
public static void supprimerPlage(int id) { PlageDAL.supprimerPlage(id); }
public static ObservableCollection <PlageDAO> listePlages() { ObservableCollection <PlageDAO> l = PlageDAL.selectPlages(); return(l); }