示例#1
0
 public Gebruiker getLogin(string Name, string Password)
 {
     _activeGebruiker = GebruikerRepository.getLogin(Name, Password);
     return(_activeGebruiker);
 }
示例#2
0
 public void addGebruikersToDB(Gebruiker item)
 {
     _persistController.addGebruikerToDB(item);
     GebruikerRepository.addGebruikers(item);
 }