Ejemplo n.º 1
0
 private void Window_Loaded(object sender, RoutedEventArgs e)
 {
     gst = new edfEntities();
     controleur leCtrl = gst.controleur.ToList().Find(ctrl => ctrl.login == txtlogin.Text && ctrl.mdp == txtMdp.Text);
 }
Ejemplo n.º 2
0
 public frmCtrl(edfEntities unGst)
 {
     InitializeComponent();
     gst = unGst;
 }
Ejemplo n.º 3
0
 private void Window_Loaded(object sender, RoutedEventArgs e)
 {
     gst = new edfEntities();
     lstControleurs.ItemsSource = gst.controleur.ToList();
 }
Ejemplo n.º 4
0
 private void Window_Loaded(object sender, RoutedEventArgs e)
 {
     gst = new edfEntities();
 }
Ejemplo n.º 5
0
 public Authentification(edfEntities gst)
 {
     this.gst = gst;
 }
Ejemplo n.º 6
0
 public admin(edfEntities unControleurEntities)
 {
     InitializeComponent();
     gst = unControleurEntities;
     lstControleur.ItemsSource = gst.controleur.ToList();
 }