Exemple #1
0
 // ProeflesGebruiker
 public Gebruiker(DateTime inschrijvingsdatum, TypeGebruiker type, string gebruikersnaam, string naam, string voornaam, string email, string telefoonnummer, Gradatie gradatie)
 {
     this.Inschrijvingsdatum = inschrijvingsdatum;
     this.Gebruikersnaam     = gebruikersnaam;
     this.Naam           = naam;
     this.Voornaam       = voornaam;
     this.Email          = email;
     this.Telefoonnummer = telefoonnummer;
     this.TypeGebruiker  = type;
     this.Gradatie       = gradatie;
 }
Exemple #2
0
 public Gebruiker(string gebruikersnaam, string rijksregisternummer, DateTime inschrijvingsdatum, string naam, string voornaam, Geslacht geslacht, DateTime geboortedatum, string geboorteplaats, string telefoonnummer, string gsmnummer, string email, string emailOuders, Adres adres, int punten, Gradatie gradatie, TypeGebruiker typeGebruiker, Lesformule lesformule)
 {
     this.Gebruikersnaam      = gebruikersnaam;
     this.Rijksregisternummer = rijksregisternummer;
     this.Inschrijvingsdatum  = inschrijvingsdatum;
     this.Naam           = naam;
     this.Voornaam       = voornaam;
     this.Geslacht       = geslacht;
     this.Geboortedatum  = geboortedatum;
     this.Geboorteplaats = geboorteplaats;
     this.Telefoonnummer = telefoonnummer;
     this.Gsmnummer      = gsmnummer;
     this.Email          = email;
     this.EmailOuders    = emailOuders;
     this.Adres          = adres;
     this.Punten         = punten;
     this.Gradatie       = gradatie;
     this.TypeGebruiker  = typeGebruiker;
     this.Lesformule     = lesformule;
 }