Exemple #1
0
 public Aankondiging(DateTime gepost, string inhoud, Verantwoordelijke verantwoordelijke, AankondigingPrioriteit prioriteit = AankondigingPrioriteit.Laag)
 {
     this.Gepost            = gepost;
     this.Inhoud            = inhoud;
     this.Verantwoordelijke = verantwoordelijke;
     this.Prioriteit        = prioriteit;
 }
 //volledige constructor
 public Sessie(string naam, DateTime start, DateTime eind, bool gesloten, int maxCap, string lokaal, Verantwoordelijke verantwoordelijke, string beschrijving = "", bool staatOpen = false)
 {
     this.Naam                   = naam;
     this.StartDatum             = start;
     this.EindDatum              = eind;
     this.Gesloten               = gesloten;
     this.MaxCap                 = maxCap;
     this.Lokaal                 = lokaal;
     this.Media                  = new List <Media>();
     this.Feedback               = new List <Feedback>();
     this.Beschrijving           = beschrijving;
     this.Verantwoordelijke      = verantwoordelijke;
     this.StaatOpen              = staatOpen;
     this.GebruikersIngeschreven = new List <SessieGebruiker>();
     this.Aankondingen           = new List <SessieAankondiging>();
 }
Exemple #3
0
 public SessieAankondiging(DateTime gepost, string inhoud, Verantwoordelijke verantwoordelijke, Sessie sessie, AankondigingPrioriteit prioriteit = AankondigingPrioriteit.Laag)
     : base(gepost, inhoud, verantwoordelijke, prioriteit)
 {
     this.Sessie = sessie;
 }