This commit is contained in:
jozsef.b@aycode.com 2024-01-12 16:06:35 +01:00
commit fb1f968055
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ namespace AyCode.Entities.Locations
public LocationBase() { }
public LocationBase(double longitude, double latitude, string? address) : this(Guid.NewGuid(), longitude, latitude, address) { }
public LocationBase(Guid id, double longitude, double latitude , string address) : this()
public LocationBase(Guid id, double longitude, double latitude , string? address) : this()
{
Id = id;
Longitude = longitude;