-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add AddressWasProposedForMunicipalityMerger
- Loading branch information
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
....Basisregisters.GrAr.Contracts/AddressRegistry/AddressWasProposedForMunicipalityMerger.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
namespace Be.Vlaanderen.Basisregisters.GrAr.Contracts.AddressRegistry | ||
{ | ||
using Common; | ||
|
||
public class AddressWasProposedForMunicipalityMerger : IQueueMessage | ||
{ | ||
public int StreetNamePersistentLocalId { get; } | ||
|
||
public int AddressPersistentLocalId { get; } | ||
|
||
public int? ParentPersistentLocalId { get; } | ||
|
||
public string DesiredStatus { get; set; } | ||
|
||
public string PostalCode { get; } | ||
|
||
public string HouseNumber { get; } | ||
|
||
public string? BoxNumber { get; } | ||
|
||
public string GeometryMethod { get; } | ||
|
||
public string GeometrySpecification { get; } | ||
|
||
public string ExtendedWkbGeometry { get; } | ||
|
||
public bool OfficiallyAssigned { get; } | ||
|
||
public int MergedAddressPersistentLocalId { get; } | ||
|
||
public Provenance Provenance { get; } | ||
|
||
public AddressWasProposedForMunicipalityMerger(int streetNamePersistentLocalId, | ||
int addressPersistentLocalId, | ||
int? parentPersistentLocalId, | ||
string desiredStatus, | ||
string postalCode, | ||
string houseNumber, | ||
string? boxNumber, | ||
string geometryMethod, | ||
string geometrySpecification, | ||
string extendedWkbGeometry, | ||
bool officiallyAssigned, | ||
int mergedAddressPersistentLocalId, | ||
Provenance provenance) | ||
{ | ||
StreetNamePersistentLocalId = streetNamePersistentLocalId; | ||
AddressPersistentLocalId = addressPersistentLocalId; | ||
ParentPersistentLocalId = parentPersistentLocalId; | ||
DesiredStatus = desiredStatus; | ||
PostalCode = postalCode; | ||
HouseNumber = houseNumber; | ||
BoxNumber = boxNumber; | ||
GeometryMethod = geometryMethod; | ||
GeometrySpecification = geometrySpecification; | ||
ExtendedWkbGeometry = extendedWkbGeometry; | ||
OfficiallyAssigned = officiallyAssigned; | ||
MergedAddressPersistentLocalId = mergedAddressPersistentLocalId; | ||
Provenance = provenance; | ||
} | ||
} | ||
} |