private void addPlageButton_Click(object sender, EventArgs e) { int superficie = int.Parse(superficieTextBox.Text); plageDataObject = new PlageViewModel(); plageDataObject.nomPlageProperty = nomPlageTextBox.Text; plageDataObject.communeProperty = communeTextBox.Text; plageDataObject.départementProperty = departementTextBox.Text; plageDataObject.superficieProperty = superficie; PlageViewModel nouvelle = new PlageViewModel(DALPlage.getMaxIdlage(), plageDataObject.nomPlageProperty, plageDataObject.communeProperty, plageDataObject.départementProperty, plageDataObject.superficieProperty); lplages.Add(nouvelle); ORMPlage.addPlage(nouvelle); listePlages.Items.Refresh(); }
public MainWindow() { InitializeComponent(); DALConnection.Connection(); DALPersonne personne = new DALPersonne(); DALPlage plage = new DALPlage(); DALEspèce espèce = new DALEspèce(); ladmins = ORMPersonne.listeAdmins(); lbene = ORMPersonne.listeBenevoles(); lplages = ORMPlage.listePlages(); lespèces = ORMEspèce.listeEspèce(); letudes = ORMEtude.listeEtudes(); lzonesP = ORMZonePrelevement.listeZones(); listeAdmins.ItemsSource = ladmins; listeBenevoles.ItemsSource = lbene; listePlages.ItemsSource = lplages; listeEspèces.ItemsSource = lespèces; listeEtudes.ItemsSource = letudes; listeAdminsSelect.ItemsSource = ladmins; listeEtudeSelect.ItemsSource = letudes; listePlageSelect.ItemsSource = lplages; liste2AdminSelect.ItemsSource = ladmins; listeZones.ItemsSource = lzonesP; listeEspeces.ItemsSource = lespèces; listeZones2.ItemsSource = lzonesP; listeEtudes2.ItemsSource = letudes; listePlages2.ItemsSource = lplages; CultureInfo culture = (CultureInfo)CultureInfo.CurrentCulture.Clone(); culture.DateTimeFormat.ShortDatePattern = "yyyy-MM-dd"; culture.DateTimeFormat.LongTimePattern = ""; Thread.CurrentThread.CurrentCulture = culture; }
public static void updatePlage(DAOPlage plage) { DALPlage.updatePlage(plage); }
public static void addPlage(DAOPlage plage) { DALPlage.addPlage(plage); }
public static ObservableCollection <DAOPlage> listePlages() { ObservableCollection <DAOPlage> ListePlages = DALPlage.selectPlages(); return(ListePlages); }
public static DAOPlage getPlage(int id) { DAOPlage plage = DALPlage.getPlage(id); return(plage); }