Refactoring de toute les methodes des pages lies a la conenction afin de les rendres toute fonctionnelle avec l'API
continuous-integration/drone/push Build is failing Details

ManagerRefactoring
Vincent ASTOLFI 2 years ago
parent c7bee1a4d6
commit 6b06e3f909

@ -25,7 +25,7 @@ public partial class ChangePassword : ContentPage
}
else
{
//Mgr.changePasswordBdd(MailUser, EntryNewMdp.Text);
Mgr.Pers.ModifierMdpInscrit(MailUser, EntryNewMdp.Text);
AffichError("mdp changé", "mot de passe bien changé", "ok");
NavigateTo("../..");
}

@ -20,7 +20,7 @@ public partial class ForgetPassword : ContentPage
{
AffichError("Email inconnue", "Aucun compte existant portant cette adresse mail", "OK");
}
/*if (Mgr.existEmail(EntryMail.Text)){
if (Mgr.Pers.EmailDisponible(EntryMail.Text)){
Random generator = new Random();
code = generator.Next(0, 1000000).ToString("D6");
Email.CreateMail(EntryMail.Text, code);
@ -31,7 +31,7 @@ public partial class ForgetPassword : ContentPage
else
{
AffichError("Mail inexistant", "Aucun compte possédant cette adresse email trouvé", "OK");
}*/
}
}
private async void AffichError(string s, string s1, string s2)
{

@ -20,8 +20,8 @@ public partial class Inscription : ContentPage
}
else
{
/*if(EntryNewPassword.Text.Equals(EntryConfirmationPassword.Text)) {
if (Mgr.existEmail(EntryNewMail.Text))
if(EntryNewPassword.Text.Equals(EntryConfirmationPassword.Text)) {
if (Mgr.Pers.EmailDisponible(EntryNewMail.Text))
{
AffichError("Mail existant", "un compte porte déjà cette adresse mail, veuillez en changer", "OK");
}
@ -43,15 +43,15 @@ public partial class Inscription : ContentPage
else
{
AffichError("Mot de passe de confirmation invalide", "Veuillez mettre deux mots de passe identiques", "OK");
}*/
}
}
}
private void ValideCode(object sender, EventArgs e)
{
if (EntryCodeRecept.Text == code)
{
//Inscrit inscrit = new Inscrit(Mgr.lastInscrit() + 1, EntryNewName.Text, EntryNewMail.Text, EntryNewSurname.Text, EntryNewPassword.Text);
//Mgr.createInscrit(inscrit);
Inscrit inscrit = new Inscrit(1, EntryNewName.Text, EntryNewMail.Text, EntryNewSurname.Text, EntryNewPassword.Text);
Mgr.Pers.AjouterInscrit(inscrit);
AffichError("compte créé", "Compte bien créé", "OK");
NavigateTo("..");
}

Loading…
Cancel
Save