public static Gebruiker CheckAuthRFID(string rfidCode) { GebruikerRepository gr = new GebruikerRepository(); List <Gebruiker> gebruikers = gr.RetrieveAll(); foreach (Gebruiker g in gebruikers) { if (g.Rfid == rfidCode) { return(g); } } return(null); }
public static Gebruiker CheckAuth(string email, string password) { GebruikerRepository gr = new GebruikerRepository(); List <Gebruiker> gebruikers = gr.RetrieveAll(); foreach (Gebruiker g in gebruikers) { if (g.Email == email && g.Wachtwoord == password) { return(g); } } return(null); }