private void BtnVerifLog_Click(object sender, EventArgs e) { UtiliserServiceHEL.ServiceHELClient s = new UtiliserServiceHEL.ServiceHELClient(); if (s.TryLogin(TBLogNom.Text.Trim(), TBLogPass.Text.Trim())) { MessageBox.Show("Login OK"); } else { MessageBox.Show("Vos indentifiants sont invalides"); } }
private void buttonBtnPersonneByID2_Click(object sender, EventArgs e) { if (int.TryParse(TBID.Text, out int nID)) { UtiliserServiceHEL.ServiceHELClient s = new UtiliserServiceHEL.ServiceHELClient(); UtiliserServiceHEL.WS_Personne p = s.GetPersonneByID(nID); if (p.ID == 0) { MessageBox.Show("Personne non enregistrée"); } else { MessageBox.Show(p.Prenom + " " + p.Nom + " (" + p.ID + ")"); } } else { MessageBox.Show("ID invalide"); } }
private void BtnHello_Click(object sender, EventArgs e) { UtiliserServiceHEL.ServiceHELClient s = new UtiliserServiceHEL.ServiceHELClient(); MessageBox.Show(s.HelloWorld()); }