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; }
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)); }
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>(); }