コード例 #1
0
 public ComptageViewModel(int nbDeParticipants, EtudeViewModel etude, PlageViewModel plage, PersonneViewModel personne, NbEspecesViewModel nbEspeces, string coordonnees)
 {
     this.nbDeParticipants = nbDeParticipants;
     this.etude            = etude;
     this.plage            = plage;
     this.personne         = personne;
     this.nbEspeces        = nbEspeces;
     this.coordonnees      = coordonnees;
 }
コード例 #2
0
 public void deletedNbEspece(NbEspecesViewModel espece)
 {
     DALNbEspece.deletedNbEspece(espece.idNbEspeceProperty);
 }
コード例 #3
0
 public void insertNbEspece(NbEspecesViewModel espece)
 {
     DALNbEspece.insertNbEspece(new DAONbEspece(espece.nbEspecesProperty, espece.idEspeceProperty));
 }
コード例 #4
0
 public void updateNbEspece(NbEspecesViewModel espece)
 {
     DALNbEspece.updateNbEspece(new DAONbEspece(espece.idNbEspeceProperty, espece.nbEspecesProperty, espece.idEspeceProperty));
 }