locationbase nullable
This commit is contained in:
parent
4be03c3998
commit
c5530bc815
|
|
@ -17,7 +17,7 @@ namespace AyCode.Entities.Locations
|
||||||
public LocationBase() { }
|
public LocationBase() { }
|
||||||
|
|
||||||
public LocationBase(double longitude, double latitude, string? address) : this(Guid.NewGuid(), longitude, latitude, address) { }
|
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;
|
Id = id;
|
||||||
Longitude = longitude;
|
Longitude = longitude;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue