Skip to content

Commit

Permalink
fix: re-add obsolete afdeling event
Browse files Browse the repository at this point in the history
  • Loading branch information
koenmetsu committed Dec 15, 2023
1 parent 8b17f35 commit 6bb703c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/AssociationRegistry/Events/AfdelingWerdGeregistreerd.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
namespace AssociationRegistry.Events;

using Framework;
using System.Runtime.Serialization;
using Vereniging.Bronnen;

[Obsolete]
public record AfdelingWerdGeregistreerd(
string VCode,
string Naam,
AfdelingWerdGeregistreerd.MoederverenigingsData Moedervereniging,
string KorteNaam,
string KorteBeschrijving,
DateOnly? Startdatum,
Registratiedata.Doelgroep Doelgroep,
Registratiedata.Contactgegeven[] Contactgegevens,
Registratiedata.Locatie[] Locaties,
Registratiedata.Vertegenwoordiger[] Vertegenwoordigers,
Registratiedata.HoofdactiviteitVerenigingsloket[] HoofdactiviteitenVerenigingsloket) : IEvent
{
[IgnoreDataMember]
public Bron Bron
=> Bron.Initiator;
public record MoederverenigingsData(string KboNummer, string VCode, string Naam);
}

0 comments on commit 6bb703c

Please sign in to comment.