Example #1
0
 public Gebruiker(string firstName, string lastName, string email, VerlangLijst wishList, List <Reservatie> reservaties)
 {
     this.FirstName   = firstName;
     this.LastName    = lastName;
     this.Email       = email;
     this.WishList    = wishList;
     this.Reservaties = reservaties;
 }
Example #2
0
 public Student(string firstName, string lastName, string email,
                VerlangLijst wishList, List <Reservatie> reservaties)
     : base(firstName, lastName, email, wishList, reservaties)
 {
 }