18 lines
408 B
C#
18 lines
408 B
C#
using AutobusApi.Domain.IEntities;
|
|
using NetTopologySuite.Geometries;
|
|
|
|
namespace AutobusApi.Persistence.Entities;
|
|
|
|
public class Coordinates : ICoordinates
|
|
{
|
|
private readonly Point point;
|
|
|
|
public Coordinates(double latitude, double longitude)
|
|
{
|
|
point = new Point(latitude, longitude);
|
|
}
|
|
|
|
public double Latitude { get => point.X; }
|
|
public double Longitude { get => point.Y; }
|
|
}
|