public Gebruiker(string naam, string gebruikersnaam, GebruikerStatus status, GebruikerType type) { Naam = naam; Gebruikersnaam = gebruikersnaam; Status = status; Type = type; }
//public int AantalJaren { get; set; } //public List<Poging> Pogingen { get; set; } #endregion public Gebruiker(string Bedrijf, string Gebruikersnaam, string Naam, Rol rol, GebruikerStatus status, string voornaam, string email /*string Wachtwoord,*/ /*List<Contract> Contracten, string Adres, string TelNr, string Email, int AantalJaren)*/) { this.Bedrijf = Bedrijf; this.Gebruikersnaam = Gebruikersnaam; this.Rol = rol; this.Status = status; this.Naam = Naam; this.Voornaam = voornaam; //this.Contracten = new List<Contract>(); // this.Wachtwoord = Wachtwoord; //this.Adres = Adres; //this.TelNr = TelNr; this.Email = email; //this.AantalJaren = AantalJaren; //this.Pogingen = new List<Poging>(); }