public async Task Create(Airport airport) { var airportAggregate = new Domain.Airport(Guid.NewGuid()); airportAggregate.SetIata(airport.Iata); if (airport.Lon.HasValue && airport.Lat.HasValue) { airportAggregate.SetCoordinates(airport.Lat.Value, airport.Lon.Value); } if (airport.Status) { airportAggregate.Enable(); } else { airportAggregate.Disable(); } airportAggregate.SetLocation(airport.Continent, airport.Iso); airportAggregate.SetName(airport.Name); airportAggregate.SetSize(airport.Size); airportAggregate.SetType(airport.Type); await _airportRepository.Save(airportAggregate); }
public void SetCoordinates() { var airport = new Domain.Airport(Guid.NewGuid()); airport.SetCoordinates(10.2, 32.4); Assert.Equal(10.2, airport.State.Lat); Assert.Equal(32.4, airport.State.Lon); }
public void SetCoordinatesOutOfRange(double latitude, double longitude) { var airport = new Domain.Airport(Guid.NewGuid()); Assert.Throws <ArgumentOutOfRangeException>(() => airport.SetCoordinates(latitude, longitude)); }