示例#1
0
 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));
 }
示例#2
0
        public static ComptageDAO getComptage(int idPersonne)
        {
            ComptageDAO p = ComptageDAL.getComptage(idPersonne);

            return(p);
        }
示例#3
0
 public static void supprimerComptage(int id)
 {
     ComptageDAL.supprimerComptage(id);
 }
示例#4
0
        public static ObservableCollection <ComptageDAO> listeComptages()
        {
            ObservableCollection <ComptageDAO> l = ComptageDAL.selectComptages();

            return(l);
        }