コード例 #1
0
        public NearestAirportService(IGetCurrentLocation locationService)
        {
            _locationService = locationService;

            _airportsService = new AirportNamesService();
            Messenger.Default.Register(this, (FindNearestAirportMessage m) => FindNearestAirport());
        }
コード例 #2
0
        public NearestAirportService(IGetCurrentLocation locationService)
        {
            _locationService = locationService;

            _airportsService = new AirportNamesService();
            Messenger.Default.Register(this, (FindNearestAirportMessage m) => FindNearestAirport());
        }