public LocationsApi(ILocationsApiGateway gateway)
 {
     _gateway = gateway;
 }
Beispiel #2
0
 public DeliveryController(
     ILocationsApiGateway locationsApiGateway, IMessageBusGateway messageBusGateway)
 {
     _locationsApi = new LocationsApi(locationsApiGateway);
     _messageBus   = new MessageBus(messageBusGateway);
 }