Esempio n. 1
0
 public Gebruiker(string voornaam, string achternaam, string email, Sfeergroep sfeergroep, string foto, GebruikerType type) : this()
 {
     Voornaam   = voornaam;
     Achternaam = achternaam;
     Email      = email;
     Sfeergroep = sfeergroep;
     Foto       = foto;
     Type       = type;
     UserName   = email;
 }
Esempio n. 2
0
 public Gebruiker(string voornaam, string achternaam, string email, string foto, string telnr, GebruikerType type) : this()
 {
     Voornaam   = voornaam;
     Achternaam = achternaam;
     Email      = email;
     Type       = type;
     Foto       = foto;
     TelNr      = telnr;
     UserName   = email;
 }
 public Gebruiker GetByType(GebruikerType gebruikerType)
 {
     return(_gebruikers.SingleOrDefault(r => r.Type == gebruikerType));
 }
Esempio n. 4
0
 public Verantwoordelijke(long idNumber, string username, string voornaam, string achternaam, string email, StatusType status, GebruikerType type)
     : base(idNumber, username, voornaam, achternaam, email, status, type)
 {
     BeheerdeSessies = new List <Sessie>();
 }