You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
631 B
23 lines
631 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public interface IPersistanceManager
|
|
{
|
|
string LoadInscrit(string id,string mdp);
|
|
void SupprimerInscritBdd(Inscrit inscrit);
|
|
void SupprimerBanqueBdd(Inscrit inscrit, Banque banque);
|
|
void SupprimerToutesBanquesBdd(Inscrit inscrit);
|
|
void CreateInscrit(Inscrit inscrit);
|
|
string LastInscrit();
|
|
bool ExistEmail(string mail);
|
|
void ChangePasswordBdd(string mail, string newMdp);
|
|
string RecupMdpBdd(string mail);
|
|
|
|
}
|
|
}
|