├── .gitignore ├── LICENSE ├── PizzaShop ├── .idea │ └── .idea.PizzaShop │ │ └── .idea │ │ ├── .gitignore │ │ ├── indexLayout.xml │ │ └── vcs.xml ├── AppHost │ ├── AppHost.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ └── config │ │ ├── collector-config-receive-filters.yaml │ │ ├── collector-config-with-honeycomb.yaml │ │ └── collector-config.yaml ├── AsbEmulator │ ├── Config │ │ └── Config.json │ └── docker-compose.yml ├── AsbGateway │ ├── AsbGateway.cs │ ├── AsbGateway.csproj │ ├── AsbMessagePump.cs │ ├── AsbMessagePumpService.cs │ ├── AsbProducer.cs │ ├── Message.cs │ └── Request.cs ├── Courier │ ├── Address.cs │ ├── AvailabilityRequestHandler.cs │ ├── AvailabilityServiceFactory.cs │ ├── Courier.csproj │ ├── DeliveryManifest.cs │ ├── DeliveryService.cs │ ├── DeliveryStatus.cs │ ├── DispatcherServiceFactory.cs │ ├── JobAccepted.cs │ ├── JobRejected.cs │ ├── OrderReady.cs │ ├── OrderReadyHandler.cs │ ├── OrderReadyServiceFactory.cs │ ├── OrderStatus.cs │ ├── Program.cs │ └── appsettings.json ├── KafkaGateway │ ├── KafkaConsumerFactory.cs │ ├── KafkaGateway.csproj │ ├── KafkaGatewayDiagnostics.cs │ ├── KafkaMessagePump.cs │ ├── KafkaMessagePumpService.cs │ └── KafkaProducerFactory.cs ├── PizzaShop.sln ├── PizzaShop │ ├── Address.cs │ ├── CookRequest.cs │ ├── CourierSettings.cs │ ├── CourierStatus.cs │ ├── CourierStatusUpdate.cs │ ├── DeliveryManifest.cs │ ├── DeliveryRequest.cs │ ├── DispatchService.cs │ ├── DispatcherServiceFactory.cs │ ├── JobAccepted.cs │ ├── JobAcceptedHandler.cs │ ├── JobRejected.cs │ ├── JobRejectedHandler.cs │ ├── JobServiceFactory.cs │ ├── KitchenService.cs │ ├── KitchenServiceFactory.cs │ ├── Order.cs │ ├── OrderReady.cs │ ├── OrderRejected.cs │ ├── OrderServiceFactory.cs │ ├── Pizza.cs │ ├── PizzaShop.csproj │ ├── PizzaSize.cs │ ├── PizzaTopping.cs │ ├── PlaceOrderHandler.cs │ ├── Program.cs │ ├── ServiceBusSettings.cs │ └── Topping.cs ├── README.md ├── Shared │ ├── Shared.csproj │ ├── TelemetryExtensions.cs │ └── TraceableRequest.cs ├── StoreFront │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── StoreFront.csproj │ ├── StoreFront.http │ ├── appsettings.Development.json │ └── appsettings.json ├── StoreFrontCommon │ ├── Address.cs │ ├── DeliveryStatus.cs │ ├── Order.cs │ ├── Pizza.cs │ ├── PizzaShopDb.cs │ ├── PizzaSize.cs │ └── StoreFrontCommon.csproj └── StoreFrontWorker │ ├── AfterOrderService.cs │ ├── AfterOrderServiceFactory.cs │ ├── CourierSettings.cs │ ├── OrderStatusChange.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── StoreFrontWorker.csproj │ ├── appsettings.Development.json │ └── appsettings.json └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/LICENSE -------------------------------------------------------------------------------- /PizzaShop/.idea/.idea.PizzaShop/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/.idea/.idea.PizzaShop/.idea/.gitignore -------------------------------------------------------------------------------- /PizzaShop/.idea/.idea.PizzaShop/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/.idea/.idea.PizzaShop/.idea/indexLayout.xml -------------------------------------------------------------------------------- /PizzaShop/.idea/.idea.PizzaShop/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/.idea/.idea.PizzaShop/.idea/vcs.xml -------------------------------------------------------------------------------- /PizzaShop/AppHost/AppHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AppHost/AppHost.csproj -------------------------------------------------------------------------------- /PizzaShop/AppHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AppHost/Program.cs -------------------------------------------------------------------------------- /PizzaShop/AppHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AppHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /PizzaShop/AppHost/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AppHost/appsettings.Development.json -------------------------------------------------------------------------------- /PizzaShop/AppHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AppHost/appsettings.json -------------------------------------------------------------------------------- /PizzaShop/AppHost/config/collector-config-receive-filters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AppHost/config/collector-config-receive-filters.yaml -------------------------------------------------------------------------------- /PizzaShop/AppHost/config/collector-config-with-honeycomb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AppHost/config/collector-config-with-honeycomb.yaml -------------------------------------------------------------------------------- /PizzaShop/AppHost/config/collector-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AppHost/config/collector-config.yaml -------------------------------------------------------------------------------- /PizzaShop/AsbEmulator/Config/Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AsbEmulator/Config/Config.json -------------------------------------------------------------------------------- /PizzaShop/AsbEmulator/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AsbEmulator/docker-compose.yml -------------------------------------------------------------------------------- /PizzaShop/AsbGateway/AsbGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AsbGateway/AsbGateway.cs -------------------------------------------------------------------------------- /PizzaShop/AsbGateway/AsbGateway.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AsbGateway/AsbGateway.csproj -------------------------------------------------------------------------------- /PizzaShop/AsbGateway/AsbMessagePump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AsbGateway/AsbMessagePump.cs -------------------------------------------------------------------------------- /PizzaShop/AsbGateway/AsbMessagePumpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AsbGateway/AsbMessagePumpService.cs -------------------------------------------------------------------------------- /PizzaShop/AsbGateway/AsbProducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AsbGateway/AsbProducer.cs -------------------------------------------------------------------------------- /PizzaShop/AsbGateway/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AsbGateway/Message.cs -------------------------------------------------------------------------------- /PizzaShop/AsbGateway/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/AsbGateway/Request.cs -------------------------------------------------------------------------------- /PizzaShop/Courier/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/Address.cs -------------------------------------------------------------------------------- /PizzaShop/Courier/AvailabilityRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/AvailabilityRequestHandler.cs -------------------------------------------------------------------------------- /PizzaShop/Courier/AvailabilityServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/AvailabilityServiceFactory.cs -------------------------------------------------------------------------------- /PizzaShop/Courier/Courier.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/Courier.csproj -------------------------------------------------------------------------------- /PizzaShop/Courier/DeliveryManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/DeliveryManifest.cs -------------------------------------------------------------------------------- /PizzaShop/Courier/DeliveryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/DeliveryService.cs -------------------------------------------------------------------------------- /PizzaShop/Courier/DeliveryStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/DeliveryStatus.cs -------------------------------------------------------------------------------- /PizzaShop/Courier/DispatcherServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/DispatcherServiceFactory.cs -------------------------------------------------------------------------------- /PizzaShop/Courier/JobAccepted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/JobAccepted.cs -------------------------------------------------------------------------------- /PizzaShop/Courier/JobRejected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/JobRejected.cs -------------------------------------------------------------------------------- /PizzaShop/Courier/OrderReady.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/OrderReady.cs -------------------------------------------------------------------------------- /PizzaShop/Courier/OrderReadyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/OrderReadyHandler.cs -------------------------------------------------------------------------------- /PizzaShop/Courier/OrderReadyServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/OrderReadyServiceFactory.cs -------------------------------------------------------------------------------- /PizzaShop/Courier/OrderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/OrderStatus.cs -------------------------------------------------------------------------------- /PizzaShop/Courier/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/Program.cs -------------------------------------------------------------------------------- /PizzaShop/Courier/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Courier/appsettings.json -------------------------------------------------------------------------------- /PizzaShop/KafkaGateway/KafkaConsumerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/KafkaGateway/KafkaConsumerFactory.cs -------------------------------------------------------------------------------- /PizzaShop/KafkaGateway/KafkaGateway.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/KafkaGateway/KafkaGateway.csproj -------------------------------------------------------------------------------- /PizzaShop/KafkaGateway/KafkaGatewayDiagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/KafkaGateway/KafkaGatewayDiagnostics.cs -------------------------------------------------------------------------------- /PizzaShop/KafkaGateway/KafkaMessagePump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/KafkaGateway/KafkaMessagePump.cs -------------------------------------------------------------------------------- /PizzaShop/KafkaGateway/KafkaMessagePumpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/KafkaGateway/KafkaMessagePumpService.cs -------------------------------------------------------------------------------- /PizzaShop/KafkaGateway/KafkaProducerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/KafkaGateway/KafkaProducerFactory.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop.sln -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/Address.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/CookRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/CookRequest.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/CourierSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/CourierSettings.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/CourierStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/CourierStatus.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/CourierStatusUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/CourierStatusUpdate.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/DeliveryManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/DeliveryManifest.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/DeliveryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/DeliveryRequest.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/DispatchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/DispatchService.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/DispatcherServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/DispatcherServiceFactory.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/JobAccepted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/JobAccepted.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/JobAcceptedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/JobAcceptedHandler.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/JobRejected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/JobRejected.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/JobRejectedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/JobRejectedHandler.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/JobServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/JobServiceFactory.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/KitchenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/KitchenService.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/KitchenServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/KitchenServiceFactory.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/Order.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/OrderReady.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/OrderReady.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/OrderRejected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/OrderRejected.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/OrderServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/OrderServiceFactory.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/Pizza.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/Pizza.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/PizzaShop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/PizzaShop.csproj -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/PizzaSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/PizzaSize.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/PizzaTopping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/PizzaTopping.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/PlaceOrderHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/PlaceOrderHandler.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/Program.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/ServiceBusSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/ServiceBusSettings.cs -------------------------------------------------------------------------------- /PizzaShop/PizzaShop/Topping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/PizzaShop/Topping.cs -------------------------------------------------------------------------------- /PizzaShop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/README.md -------------------------------------------------------------------------------- /PizzaShop/Shared/Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Shared/Shared.csproj -------------------------------------------------------------------------------- /PizzaShop/Shared/TelemetryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Shared/TelemetryExtensions.cs -------------------------------------------------------------------------------- /PizzaShop/Shared/TraceableRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/Shared/TraceableRequest.cs -------------------------------------------------------------------------------- /PizzaShop/StoreFront/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFront/Program.cs -------------------------------------------------------------------------------- /PizzaShop/StoreFront/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFront/Properties/launchSettings.json -------------------------------------------------------------------------------- /PizzaShop/StoreFront/StoreFront.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFront/StoreFront.csproj -------------------------------------------------------------------------------- /PizzaShop/StoreFront/StoreFront.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFront/StoreFront.http -------------------------------------------------------------------------------- /PizzaShop/StoreFront/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFront/appsettings.Development.json -------------------------------------------------------------------------------- /PizzaShop/StoreFront/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFront/appsettings.json -------------------------------------------------------------------------------- /PizzaShop/StoreFrontCommon/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontCommon/Address.cs -------------------------------------------------------------------------------- /PizzaShop/StoreFrontCommon/DeliveryStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontCommon/DeliveryStatus.cs -------------------------------------------------------------------------------- /PizzaShop/StoreFrontCommon/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontCommon/Order.cs -------------------------------------------------------------------------------- /PizzaShop/StoreFrontCommon/Pizza.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontCommon/Pizza.cs -------------------------------------------------------------------------------- /PizzaShop/StoreFrontCommon/PizzaShopDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontCommon/PizzaShopDb.cs -------------------------------------------------------------------------------- /PizzaShop/StoreFrontCommon/PizzaSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontCommon/PizzaSize.cs -------------------------------------------------------------------------------- /PizzaShop/StoreFrontCommon/StoreFrontCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontCommon/StoreFrontCommon.csproj -------------------------------------------------------------------------------- /PizzaShop/StoreFrontWorker/AfterOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontWorker/AfterOrderService.cs -------------------------------------------------------------------------------- /PizzaShop/StoreFrontWorker/AfterOrderServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontWorker/AfterOrderServiceFactory.cs -------------------------------------------------------------------------------- /PizzaShop/StoreFrontWorker/CourierSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontWorker/CourierSettings.cs -------------------------------------------------------------------------------- /PizzaShop/StoreFrontWorker/OrderStatusChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontWorker/OrderStatusChange.cs -------------------------------------------------------------------------------- /PizzaShop/StoreFrontWorker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontWorker/Program.cs -------------------------------------------------------------------------------- /PizzaShop/StoreFrontWorker/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontWorker/Properties/launchSettings.json -------------------------------------------------------------------------------- /PizzaShop/StoreFrontWorker/StoreFrontWorker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontWorker/StoreFrontWorker.csproj -------------------------------------------------------------------------------- /PizzaShop/StoreFrontWorker/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontWorker/appsettings.Development.json -------------------------------------------------------------------------------- /PizzaShop/StoreFrontWorker/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/PizzaShop/StoreFrontWorker/appsettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iancooper/PizzaShop/HEAD/README.md --------------------------------------------------------------------------------