public void GeefBestellingIn(BestelEventArgs args)
 {
     /*
      * if (_bestellingEvent != null)
      *  _bestellingEvent(this, args);
      */
     BestellingEvent?.Invoke(this, args);
 }
 public void GeefBestellingIn(BestelEventArgs args)
 {
     BestellingEvent?.Invoke(this, args);
 }