├── .github └── workflows │ ├── globoticket.gateway.mobilebff.yaml │ ├── globoticket.gateway.webbff.yaml │ ├── globoticket.services.discount.yaml │ ├── globoticket.services.eventcatalog.yaml │ ├── globoticket.services.marketing.yaml │ ├── globoticket.services.ordering.yaml │ ├── globoticket.services.payment.yaml │ ├── globoticket.services.shoppingbasket.yaml │ ├── globoticket.web.yaml │ └── sarif.tpl ├── .gitignore ├── GloboTicket ├── .dockerignore ├── External.PaymentGateway │ ├── Controllers │ │ └── PaymentApproverController.cs │ ├── Dockerfile │ ├── External.PaymentGateway.csproj │ ├── Model │ │ └── PaymentDto.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── GloboTicket.Client │ ├── Controllers │ │ ├── EventCatalogController.cs │ │ ├── OrderController.cs │ │ └── ShoppingBasketController.cs │ ├── Dockerfile │ ├── Extensions │ │ ├── EnumerableOfGuid.cs │ │ ├── HttpClientExtension.cs │ │ └── IRequestCookieCollection.cs │ ├── GloboTicket.Web.csproj │ ├── Models │ │ ├── Api │ │ │ ├── Basket.cs │ │ │ ├── BasketForCheckout.cs │ │ │ ├── BasketForCreation.cs │ │ │ ├── BasketLine.cs │ │ │ ├── BasketLineForCreation.cs │ │ │ ├── BasketLineForUpdate.cs │ │ │ ├── Category.cs │ │ │ ├── Coupon.cs │ │ │ ├── CouponForUpdate.cs │ │ │ ├── Event.cs │ │ │ ├── EventCategory.cs │ │ │ └── Order.cs │ │ ├── Settings.cs │ │ └── View │ │ │ ├── BasketCheckoutViewModel.cs │ │ │ ├── BasketLineViewModel.cs │ │ │ ├── BasketViewModel.cs │ │ │ ├── ErrorViewModel.cs │ │ │ ├── EventListModel.cs │ │ │ └── OrderViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── DiscountService.cs │ │ ├── EventCatalogService.cs │ │ ├── IDiscountService.cs │ │ ├── IEventCatalogService.cs │ │ ├── IOrderService.cs │ │ ├── IShoppingBasketService.cs │ │ ├── OrderService.cs │ │ └── ShoppingBasketService.cs │ ├── Startup.cs │ ├── Views │ │ ├── EventCatalog │ │ │ ├── Detail.cshtml │ │ │ ├── DisplayTemplates │ │ │ │ └── Event.cshtml │ │ │ └── Index.cshtml │ │ ├── Order │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _ShoppingCartWidget.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── ShoppingBasket │ │ │ ├── Checkout.cshtml │ │ │ ├── CheckoutComplete.cshtml │ │ │ ├── EditorTemplates │ │ │ │ └── BasketLineViewModel.cshtml │ │ │ └── Index.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-BoldItalic.ttf │ │ ├── OpenSans-ExtraBold.ttf │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ ├── OpenSans-Italic.ttf │ │ ├── OpenSans-Light.ttf │ │ ├── OpenSans-LightItalic.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Semibold.ttf │ │ └── OpenSans-SemiboldItalic.ttf │ │ ├── htmlpage.html │ │ ├── img │ │ ├── _Export_globoticket-horizontal-white.png │ │ ├── arrow-down.svg │ │ ├── banjo.jpg │ │ ├── cart-plus.svg │ │ ├── conf.jpg │ │ ├── dj.jpg │ │ ├── guitar.jpg │ │ ├── michael.jpg │ │ ├── musical.jpg │ │ └── times.svg │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── GloboTicket.Gateway.MobileBff │ ├── Controllers │ │ └── WeatherForecastController.cs │ ├── Dockerfile │ ├── GloboTicket.Gateway.MobileBff.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── GloboTicket.Gateway.Shared │ ├── Event │ │ ├── CategoryDto.cs │ │ └── EventDto.cs │ └── GloboTicket.Gateway.Shared.csproj ├── GloboTicket.Gateway.WebBff │ ├── Controllers │ │ ├── BasketController.cs │ │ ├── CatalogController.cs │ │ ├── DiscountController.cs │ │ └── OrderController.cs │ ├── Dockerfile │ ├── Extensions │ │ └── HttpClientExtensions.cs │ ├── GloboTicket.Gateway.WebBff.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── BasketService.cs │ │ ├── CatalogService.cs │ │ ├── DiscountService.cs │ │ ├── IBasketService.cs │ │ ├── ICatalogService.cs │ │ ├── IDiscountService.cs │ │ ├── IOrderService.cs │ │ └── OrderService.cs │ ├── Startup.cs │ ├── Url │ │ ├── DiscountOperations.cs │ │ ├── EventCatalogOperations.cs │ │ ├── MarketingOperations.cs │ │ ├── OrderingOperations.cs │ │ ├── ServiceUrls.cs │ │ └── ShoppingBasketOperations.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── GloboTicket.Integration.Messages │ ├── GloboTicket.Integration.Messages.csproj │ └── IntegrationBaseMessage.cs ├── GloboTicket.Integration.MessagingBus │ ├── AzServiceBusMessageBus.cs │ ├── GloboTicket.Integration.MessagingBus.csproj │ └── IMessageBus.cs ├── GloboTicket.MobileApp │ ├── GloboTicket.MobileApp.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── GloboTicket.MobileApp.Android.csproj │ │ ├── HttpClientHandlerService.cs │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable │ │ │ └── patternwide.jpg │ │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ ├── GloboTicket.MobileApp.iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon120.png │ │ │ │ ├── Icon152.png │ │ │ │ ├── Icon167.png │ │ │ │ ├── Icon180.png │ │ │ │ ├── Icon20.png │ │ │ │ ├── Icon29.png │ │ │ │ ├── Icon40.png │ │ │ │ ├── Icon58.png │ │ │ │ ├── Icon60.png │ │ │ │ ├── Icon76.png │ │ │ │ ├── Icon80.png │ │ │ │ └── Icon87.png │ │ ├── Entitlements.plist │ │ ├── GloboTicket.MobileApp.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── LaunchScreen.storyboard │ └── GloboTicket.MobileApp │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── Behaviors │ │ ├── BindableBehavior.cs │ │ └── EventToCommandBehavior.cs │ │ ├── Converter │ │ └── ItemTappedConverter.cs │ │ ├── GloboTicket.MobileApp.csproj │ │ ├── Models │ │ ├── Event.cs │ │ ├── EventRepository.cs │ │ └── IEventRepository.cs │ │ ├── Services │ │ ├── EventDataService.cs │ │ ├── IEventDataService.cs │ │ ├── IHttpClientHandlerService.cs │ │ ├── INavigationService.cs │ │ └── NavigationService.cs │ │ ├── Utility │ │ ├── ViewModelLocator.cs │ │ └── ViewNames.cs │ │ ├── ViewModels │ │ ├── BaseViewModel.cs │ │ ├── EventDetailViewModel.cs │ │ └── EventOverviewViewModel.cs │ │ └── Views │ │ ├── EventDetailView.xaml │ │ ├── EventDetailView.xaml.cs │ │ ├── EventOverviewView.xaml │ │ └── EventOverviewView.xaml.cs ├── GloboTicket.Services.Discount │ ├── Controllers │ │ └── DiscountController.cs │ ├── DbContexts │ │ └── DiscountDbContext.cs │ ├── Dockerfile │ ├── Entities │ │ └── Coupon.cs │ ├── GloboTicket.Services.Discount.csproj │ ├── Migrations │ │ ├── 20200808123113_Initial.Designer.cs │ │ ├── 20200808123113_Initial.cs │ │ └── DiscountDbContextModelSnapshot.cs │ ├── Models │ │ └── CouponDto.cs │ ├── Profiles │ │ └── CouponProfile.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Repositories │ │ ├── CouponRepository.cs │ │ └── ICouponRepository.cs │ ├── Startup.cs │ ├── TicketDiscountDB-create.sql │ ├── appsettings.Development.json │ └── appsettings.json ├── GloboTicket.Services.EventCatalog │ ├── .config │ │ └── dotnet-tools.json │ ├── Controllers │ │ ├── CategoryController.cs │ │ └── EventController.cs │ ├── DbContexts │ │ └── EventCatalogDbContext.cs │ ├── Dockerfile │ ├── Entities │ │ ├── Category.cs │ │ └── Event.cs │ ├── EventCatalogDB-create.sql │ ├── GloboTicket.Services.EventCatalog.csproj │ ├── Migrations │ │ ├── 20200630132753_initial.Designer.cs │ │ ├── 20200630132753_initial.cs │ │ ├── 20200711142242_InitialData.Designer.cs │ │ ├── 20200711142242_InitialData.cs │ │ ├── 20200815155011_DifferentGuids.Designer.cs │ │ ├── 20200815155011_DifferentGuids.cs │ │ ├── 20200823100142_moreData.Designer.cs │ │ ├── 20200823100142_moreData.cs │ │ └── EventCatalogDbContextModelSnapshot.cs │ ├── Models │ │ ├── CategoryDto.cs │ │ └── EventDto.cs │ ├── Profiles │ │ ├── CategoryProfile.cs │ │ └── EventProfile.cs │ ├── Program.cs │ ├── Properties │ │ ├── launchSettings.json │ │ ├── serviceDependencies.GloboTicketServicesEventCatalog - Web Deploy.json │ │ └── serviceDependencies.json │ ├── Repositories │ │ ├── CategoryRepository.cs │ │ ├── EventRepository.cs │ │ ├── ICategoryRepository.cs │ │ └── IEventRepository.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── GloboTicket.Services.Marketing │ ├── DbContexts │ │ └── MarketingDbContext.cs │ ├── Dockerfile │ ├── Entities │ │ └── BasketChangeEvent.cs │ ├── Extensions │ │ └── HttpClientExtensions.cs │ ├── GloboTicket.Services.Marketing.csproj │ ├── MarketingDB-create.sql │ ├── Migrations │ │ ├── 20200815151434_Initial.Designer.cs │ │ ├── 20200815151434_Initial.cs │ │ └── MarketingDbContextModelSnapshot.cs │ ├── Models │ │ ├── BasketChangeEvent.cs │ │ └── BasketChangeTypeEnum.cs │ ├── Profiles │ │ └── BasketChangeEventProfile.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Repositories │ │ ├── BasketChangeEventRepository.cs │ │ └── IBasketChangeEventRepository.cs │ ├── Services │ │ ├── BasketChangeEventService.cs │ │ └── IBasketChangeEventService.cs │ ├── Startup.cs │ ├── Worker │ │ └── TimedBasketChangeEventService.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── GloboTicket.Services.Order │ ├── Controllers │ │ └── OrderController.cs │ ├── DbContexts │ │ └── OrderDbContext.cs │ ├── Dockerfile │ ├── Entities │ │ ├── Order.cs │ │ └── OrderLine.cs │ ├── Extensions │ │ └── ApplicationBuilderExtensions.cs │ ├── GloboTicket.Services.Ordering.csproj │ ├── Messages │ │ ├── BasketCheckoutMessage.cs │ │ ├── BasketLineMessage.cs │ │ ├── OrderPaymentRequestMessage.cs │ │ └── OrderPaymentUpdateMessage.cs │ ├── Messaging │ │ ├── AzServiceBusConsumer.cs │ │ └── IAzServiceBusConsumer.cs │ ├── Migrations │ │ ├── 20200809150233_Initial.Designer.cs │ │ ├── 20200809150233_Initial.cs │ │ └── OrderDbContextModelSnapshot.cs │ ├── OrderDB-create.sql │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Repositories │ │ ├── IOrderRepository.cs │ │ └── OrderRepository.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── GloboTicket.Services.Payment │ ├── Controllers │ │ └── PaymentController.cs │ ├── Dockerfile │ ├── GloboTicket.Services.Payment.csproj │ ├── Messages │ │ ├── OrderPaymentRequestMessage.cs │ │ └── OrderPaymentUpdateMessage.cs │ ├── Model │ │ └── PaymentInfo.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── ExternalGatewayPaymentService.cs │ │ └── IExternalGatewayPaymentService.cs │ ├── Startup.cs │ ├── Worker │ │ └── ServiceBusListener.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── GloboTicket.Services.PaymentWorker │ ├── GloboTicket.Services.PaymentWorker.csproj │ ├── Model │ │ └── OrderPaymentRequestMessage.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ └── ServiceBusListener.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── GloboTicket.Services.ShoppingBasket │ ├── .config │ │ └── dotnet-tools.json │ ├── Controllers │ │ ├── BasketChangeEventController.cs │ │ ├── BasketLinesController.cs │ │ └── BasketsController.cs │ ├── DbContexts │ │ └── ShoppingBasketDbContext.cs │ ├── Dockerfile │ ├── Entities │ │ ├── Basket.cs │ │ ├── BasketChangeEvent.cs │ │ ├── BasketChangeTypeEnum.cs │ │ ├── BasketLine.cs │ │ └── Event.cs │ ├── Extensions │ │ └── HttpClientExtensions.cs │ ├── GloboTicket.Services.ShoppingBasket.csproj │ ├── Messages │ │ ├── BasketCheckoutMessage.cs │ │ └── BasketLineMessage.cs │ ├── Migrations │ │ ├── 20200630142717_InitialMigration.Designer.cs │ │ ├── 20200630142717_InitialMigration.cs │ │ ├── 20200711083614_Events.Designer.cs │ │ ├── 20200711083614_Events.cs │ │ ├── 20200711091215_BasketLinePrice.Designer.cs │ │ ├── 20200711091215_BasketLinePrice.cs │ │ ├── 20200815084323_CouponIdAddedToBasket.Designer.cs │ │ ├── 20200815084323_CouponIdAddedToBasket.cs │ │ ├── 20200815102156_CouponIdNullable.Designer.cs │ │ ├── 20200815102156_CouponIdNullable.cs │ │ ├── 20200815140846_BasketChangeEventAdded.Designer.cs │ │ ├── 20200815140846_BasketChangeEventAdded.cs │ │ └── ShoppingBasketDbContextModelSnapshot.cs │ ├── Models │ │ ├── Basket.cs │ │ ├── BasketChangeEventForPublication.cs │ │ ├── BasketCheckout.cs │ │ ├── BasketForCreation.cs │ │ ├── BasketLine.cs │ │ ├── BasketLineForCreation.cs │ │ ├── BasketLineForUpdate.cs │ │ ├── Coupon.cs │ │ └── Event.cs │ ├── Profiles │ │ ├── BasketChangeEventProfile.cs │ │ ├── BasketCheckoutProfile.cs │ │ ├── BasketLineProfile.cs │ │ ├── BasketProfile.cs │ │ └── EventProfile.cs │ ├── Program.cs │ ├── Properties │ │ ├── launchSettings.json │ │ ├── serviceDependencies.GloboTicketServicesShoppingBasket - Web Deploy.json │ │ └── serviceDependencies.json │ ├── Repositories │ │ ├── BasketChangeEventRepository.cs │ │ ├── BasketLinesRepository.cs │ │ ├── BasketRepository.cs │ │ ├── EventRepository.cs │ │ ├── IBasketChangeEventRepository.cs │ │ ├── IBasketLinesRepository.cs │ │ ├── IBasketRepository.cs │ │ └── IEventRepository.cs │ ├── Services │ │ ├── DiscountService.cs │ │ ├── EventCatalogService.cs │ │ ├── IDiscountService.cs │ │ └── IEventCatalogService.cs │ ├── Shoppingbasket-create.sql │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── GloboTicket.Web.Bff │ ├── Controllers │ │ ├── EventCatalogController.cs │ │ ├── OrderController.cs │ │ └── ShoppingBasketController.cs │ ├── Dockerfile │ ├── Extensions │ │ ├── EnumerableOfGuid.cs │ │ ├── HttpClientExtension.cs │ │ └── IRequestCookieCollection.cs │ ├── GloboTicket.Web.Bff.csproj │ ├── Models │ │ ├── Api │ │ │ ├── Basket.cs │ │ │ ├── BasketForCheckout.cs │ │ │ ├── BasketForCreation.cs │ │ │ ├── BasketLine.cs │ │ │ ├── BasketLineForCreation.cs │ │ │ ├── BasketLineForUpdate.cs │ │ │ ├── Category.cs │ │ │ ├── Coupon.cs │ │ │ ├── CouponForUpdate.cs │ │ │ ├── Event.cs │ │ │ ├── EventCategory.cs │ │ │ └── Order.cs │ │ ├── Settings.cs │ │ └── View │ │ │ ├── BasketCheckoutViewModel.cs │ │ │ ├── BasketLineViewModel.cs │ │ │ ├── BasketViewModel.cs │ │ │ ├── ErrorViewModel.cs │ │ │ ├── EventListModel.cs │ │ │ └── OrderViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── DiscountService.cs │ │ ├── EventCatalogService.cs │ │ ├── IDiscountService.cs │ │ ├── IEventCatalogService.cs │ │ ├── IOrderService.cs │ │ ├── IShoppingBasketService.cs │ │ ├── OrderService.cs │ │ └── ShoppingBasketService.cs │ ├── Startup.cs │ ├── Views │ │ ├── EventCatalog │ │ │ ├── Detail.cshtml │ │ │ ├── DisplayTemplates │ │ │ │ └── Event.cshtml │ │ │ └── Index.cshtml │ │ ├── Order │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _ShoppingCartWidget.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── ShoppingBasket │ │ │ ├── Checkout.cshtml │ │ │ ├── CheckoutComplete.cshtml │ │ │ ├── EditorTemplates │ │ │ │ └── BasketLineViewModel.cshtml │ │ │ └── Index.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-BoldItalic.ttf │ │ ├── OpenSans-ExtraBold.ttf │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ ├── OpenSans-Italic.ttf │ │ ├── OpenSans-Light.ttf │ │ ├── OpenSans-LightItalic.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Semibold.ttf │ │ └── OpenSans-SemiboldItalic.ttf │ │ ├── img │ │ ├── _Export_globoticket-horizontal-white.png │ │ ├── arrow-down.svg │ │ ├── banjo.jpg │ │ ├── cart-plus.svg │ │ ├── michael.jpg │ │ ├── musical.jpg │ │ └── times.svg │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── GloboTicket.sln ├── aks-globoticket.gateway.mobilebff.yaml ├── aks-globoticket.gateway.webbff.yaml ├── aks-globoticket.services.discount.yaml ├── aks-globoticket.services.eventcatalog.yaml ├── aks-globoticket.services.marketing.yaml ├── aks-globoticket.services.ordering.yaml ├── aks-globoticket.services.payment.yaml ├── aks-globoticket.services.shoppingbasket.yaml ├── aks-globoticket.web.yaml ├── docker-compose.dcproj ├── docker-compose.override.yml ├── docker-compose.yml └── pipelines │ ├── pipeline.gateway.mobilebff.yaml │ ├── pipeline.gateway.webbff.yaml │ ├── pipeline.globoticket.services.discount.yaml │ ├── pipeline.globoticket.services.eventcatalog.yaml │ ├── pipeline.globoticket.services.marketing.yaml │ ├── pipeline.globoticket.services.ordering.yaml │ ├── pipeline.globoticket.services.payment.yaml │ ├── pipeline.globoticket.services.shoppingbasket.yaml │ └── pipeline.web.yaml ├── LICENSE ├── README.md └── load.sh /.github/workflows/globoticket.gateway.mobilebff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/.github/workflows/globoticket.gateway.mobilebff.yaml -------------------------------------------------------------------------------- /.github/workflows/globoticket.gateway.webbff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/.github/workflows/globoticket.gateway.webbff.yaml -------------------------------------------------------------------------------- /.github/workflows/globoticket.services.discount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/.github/workflows/globoticket.services.discount.yaml -------------------------------------------------------------------------------- /.github/workflows/globoticket.services.eventcatalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/.github/workflows/globoticket.services.eventcatalog.yaml -------------------------------------------------------------------------------- /.github/workflows/globoticket.services.marketing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/.github/workflows/globoticket.services.marketing.yaml -------------------------------------------------------------------------------- /.github/workflows/globoticket.services.ordering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/.github/workflows/globoticket.services.ordering.yaml -------------------------------------------------------------------------------- /.github/workflows/globoticket.services.payment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/.github/workflows/globoticket.services.payment.yaml -------------------------------------------------------------------------------- /.github/workflows/globoticket.services.shoppingbasket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/.github/workflows/globoticket.services.shoppingbasket.yaml -------------------------------------------------------------------------------- /.github/workflows/globoticket.web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/.github/workflows/globoticket.web.yaml -------------------------------------------------------------------------------- /.github/workflows/sarif.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/.github/workflows/sarif.tpl -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/.gitignore -------------------------------------------------------------------------------- /GloboTicket/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/.dockerignore -------------------------------------------------------------------------------- /GloboTicket/External.PaymentGateway/Controllers/PaymentApproverController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/External.PaymentGateway/Controllers/PaymentApproverController.cs -------------------------------------------------------------------------------- /GloboTicket/External.PaymentGateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/External.PaymentGateway/Dockerfile -------------------------------------------------------------------------------- /GloboTicket/External.PaymentGateway/External.PaymentGateway.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/External.PaymentGateway/External.PaymentGateway.csproj -------------------------------------------------------------------------------- /GloboTicket/External.PaymentGateway/Model/PaymentDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/External.PaymentGateway/Model/PaymentDto.cs -------------------------------------------------------------------------------- /GloboTicket/External.PaymentGateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/External.PaymentGateway/Program.cs -------------------------------------------------------------------------------- /GloboTicket/External.PaymentGateway/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/External.PaymentGateway/Properties/launchSettings.json -------------------------------------------------------------------------------- /GloboTicket/External.PaymentGateway/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/External.PaymentGateway/Startup.cs -------------------------------------------------------------------------------- /GloboTicket/External.PaymentGateway/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/External.PaymentGateway/appsettings.Development.json -------------------------------------------------------------------------------- /GloboTicket/External.PaymentGateway/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/External.PaymentGateway/appsettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Controllers/EventCatalogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Controllers/EventCatalogController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Controllers/OrderController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Controllers/ShoppingBasketController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Controllers/ShoppingBasketController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Dockerfile -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Extensions/EnumerableOfGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Extensions/EnumerableOfGuid.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Extensions/HttpClientExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Extensions/HttpClientExtension.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Extensions/IRequestCookieCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Extensions/IRequestCookieCollection.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/GloboTicket.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/GloboTicket.Web.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/Api/Basket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/Api/Basket.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/Api/BasketForCheckout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/Api/BasketForCheckout.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/Api/BasketForCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/Api/BasketForCreation.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/Api/BasketLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/Api/BasketLine.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/Api/BasketLineForCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/Api/BasketLineForCreation.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/Api/BasketLineForUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/Api/BasketLineForUpdate.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/Api/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/Api/Category.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/Api/Coupon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/Api/Coupon.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/Api/CouponForUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/Api/CouponForUpdate.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/Api/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/Api/Event.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/Api/EventCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/Api/EventCategory.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/Api/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/Api/Order.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/Settings.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/View/BasketCheckoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/View/BasketCheckoutViewModel.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/View/BasketLineViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/View/BasketLineViewModel.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/View/BasketViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/View/BasketViewModel.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/View/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/View/ErrorViewModel.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/View/EventListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/View/EventListModel.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Models/View/OrderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Models/View/OrderViewModel.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Program.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Services/DiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Services/DiscountService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Services/EventCatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Services/EventCatalogService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Services/IDiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Services/IDiscountService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Services/IEventCatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Services/IEventCatalogService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Services/IOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Services/IOrderService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Services/IShoppingBasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Services/IShoppingBasketService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Services/OrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Services/OrderService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Services/ShoppingBasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Services/ShoppingBasketService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Startup.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Views/EventCatalog/Detail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Views/EventCatalog/Detail.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Views/EventCatalog/DisplayTemplates/Event.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Views/EventCatalog/DisplayTemplates/Event.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Views/EventCatalog/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Views/EventCatalog/Index.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Views/Order/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Views/Order/Index.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Views/Shared/_ShoppingCartWidget.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Views/Shared/_ShoppingCartWidget.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Views/ShoppingBasket/Checkout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Views/ShoppingBasket/Checkout.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Views/ShoppingBasket/CheckoutComplete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Views/ShoppingBasket/CheckoutComplete.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Views/ShoppingBasket/EditorTemplates/BasketLineViewModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Views/ShoppingBasket/EditorTemplates/BasketLineViewModel.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Views/ShoppingBasket/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Views/ShoppingBasket/Index.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/appsettings.Development.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/appsettings.Production.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/appsettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/css/site.css -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/favicon.ico -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/fonts/OpenSans-SemiboldItalic.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/htmlpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/htmlpage.html -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/img/_Export_globoticket-horizontal-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/img/_Export_globoticket-horizontal-white.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/img/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/img/arrow-down.svg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/img/banjo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/img/banjo.jpg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/img/cart-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/img/cart-plus.svg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/img/conf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/img/conf.jpg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/img/dj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/img/dj.jpg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/img/guitar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/img/guitar.jpg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/img/michael.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/img/michael.jpg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/img/musical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/img/musical.jpg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/img/times.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/img/times.svg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Client/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Client/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.MobileBff/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.MobileBff/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.MobileBff/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.MobileBff/Dockerfile -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.MobileBff/GloboTicket.Gateway.MobileBff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.MobileBff/GloboTicket.Gateway.MobileBff.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.MobileBff/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.MobileBff/Program.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.MobileBff/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.MobileBff/Properties/launchSettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.MobileBff/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.MobileBff/Startup.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.MobileBff/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.MobileBff/WeatherForecast.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.MobileBff/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.MobileBff/appsettings.Development.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.MobileBff/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.MobileBff/appsettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.Shared/Event/CategoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.Shared/Event/CategoryDto.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.Shared/Event/EventDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.Shared/Event/EventDto.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.Shared/GloboTicket.Gateway.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.Shared/GloboTicket.Gateway.Shared.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Controllers/BasketController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Controllers/BasketController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Controllers/CatalogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Controllers/CatalogController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Controllers/DiscountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Controllers/DiscountController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Controllers/OrderController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Dockerfile -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Extensions/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Extensions/HttpClientExtensions.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/GloboTicket.Gateway.WebBff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/GloboTicket.Gateway.WebBff.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Program.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Properties/launchSettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Services/BasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Services/BasketService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Services/CatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Services/CatalogService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Services/DiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Services/DiscountService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Services/IBasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Services/IBasketService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Services/ICatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Services/ICatalogService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Services/IDiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Services/IDiscountService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Services/IOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Services/IOrderService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Services/OrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Services/OrderService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Startup.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Url/DiscountOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Url/DiscountOperations.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Url/EventCatalogOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Url/EventCatalogOperations.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Url/MarketingOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Url/MarketingOperations.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Url/OrderingOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Url/OrderingOperations.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Url/ServiceUrls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Url/ServiceUrls.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/Url/ShoppingBasketOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/Url/ShoppingBasketOperations.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/appsettings.Development.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Gateway.WebBff/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Gateway.WebBff/appsettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Integration.Messages/GloboTicket.Integration.Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Integration.Messages/GloboTicket.Integration.Messages.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Integration.Messages/IntegrationBaseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Integration.Messages/IntegrationBaseMessage.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Integration.MessagingBus/AzServiceBusMessageBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Integration.MessagingBus/AzServiceBusMessageBus.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Integration.MessagingBus/GloboTicket.Integration.MessagingBus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Integration.MessagingBus/GloboTicket.Integration.MessagingBus.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Integration.MessagingBus/IMessageBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Integration.MessagingBus/IMessageBus.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/GloboTicket.MobileApp.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/GloboTicket.MobileApp.Android.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/HttpClientHandlerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/HttpClientHandlerService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/MainActivity.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/drawable/patternwide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/drawable/patternwide.jpg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Entitlements.plist -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/GloboTicket.MobileApp.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/GloboTicket.MobileApp.iOS.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Info.plist -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Main.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Resources/Default.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/App.xaml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/App.xaml.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/AssemblyInfo.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Behaviors/BindableBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Behaviors/BindableBehavior.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Behaviors/EventToCommandBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Behaviors/EventToCommandBehavior.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Converter/ItemTappedConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Converter/ItemTappedConverter.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/GloboTicket.MobileApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/GloboTicket.MobileApp.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Models/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Models/Event.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Models/EventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Models/EventRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Models/IEventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Models/IEventRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Services/EventDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Services/EventDataService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Services/IEventDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Services/IEventDataService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Services/IHttpClientHandlerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Services/IHttpClientHandlerService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Services/INavigationService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Services/NavigationService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Utility/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Utility/ViewModelLocator.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Utility/ViewNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Utility/ViewNames.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/ViewModels/EventDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/ViewModels/EventDetailViewModel.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/ViewModels/EventOverviewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/ViewModels/EventOverviewViewModel.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Views/EventDetailView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Views/EventDetailView.xaml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Views/EventDetailView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Views/EventDetailView.xaml.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Views/EventOverviewView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Views/EventOverviewView.xaml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Views/EventOverviewView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.MobileApp/GloboTicket.MobileApp/Views/EventOverviewView.xaml.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/Controllers/DiscountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/Controllers/DiscountController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/DbContexts/DiscountDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/DbContexts/DiscountDbContext.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/Dockerfile -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/Entities/Coupon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/Entities/Coupon.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/GloboTicket.Services.Discount.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/GloboTicket.Services.Discount.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/Migrations/20200808123113_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/Migrations/20200808123113_Initial.Designer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/Migrations/20200808123113_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/Migrations/20200808123113_Initial.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/Migrations/DiscountDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/Migrations/DiscountDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/Models/CouponDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/Models/CouponDto.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/Profiles/CouponProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/Profiles/CouponProfile.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/Program.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/Properties/launchSettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/Repositories/CouponRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/Repositories/CouponRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/Repositories/ICouponRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/Repositories/ICouponRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/Startup.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/TicketDiscountDB-create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/TicketDiscountDB-create.sql -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/appsettings.Development.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Discount/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Discount/appsettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/.config/dotnet-tools.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Controllers/CategoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Controllers/CategoryController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Controllers/EventController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Controllers/EventController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/DbContexts/EventCatalogDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/DbContexts/EventCatalogDbContext.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Dockerfile -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Entities/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Entities/Category.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Entities/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Entities/Event.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/EventCatalogDB-create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/EventCatalogDB-create.sql -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/GloboTicket.Services.EventCatalog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/GloboTicket.Services.EventCatalog.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200630132753_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200630132753_initial.Designer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200630132753_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200630132753_initial.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200711142242_InitialData.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200711142242_InitialData.Designer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200711142242_InitialData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200711142242_InitialData.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200815155011_DifferentGuids.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200815155011_DifferentGuids.Designer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200815155011_DifferentGuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200815155011_DifferentGuids.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200823100142_moreData.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200823100142_moreData.Designer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200823100142_moreData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Migrations/20200823100142_moreData.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Migrations/EventCatalogDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Migrations/EventCatalogDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Models/CategoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Models/CategoryDto.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Models/EventDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Models/EventDto.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Profiles/CategoryProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Profiles/CategoryProfile.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Profiles/EventProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Profiles/EventProfile.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Program.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Properties/launchSettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Properties/serviceDependencies.GloboTicketServicesEventCatalog - Web Deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Properties/serviceDependencies.GloboTicketServicesEventCatalog - Web Deploy.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Repositories/CategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Repositories/CategoryRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Repositories/EventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Repositories/EventRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Repositories/ICategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Repositories/ICategoryRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Repositories/IEventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Repositories/IEventRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/Startup.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/appsettings.Development.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.EventCatalog/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.EventCatalog/appsettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/DbContexts/MarketingDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/DbContexts/MarketingDbContext.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Dockerfile -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Entities/BasketChangeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Entities/BasketChangeEvent.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Extensions/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Extensions/HttpClientExtensions.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/GloboTicket.Services.Marketing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/GloboTicket.Services.Marketing.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/MarketingDB-create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/MarketingDB-create.sql -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Migrations/20200815151434_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Migrations/20200815151434_Initial.Designer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Migrations/20200815151434_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Migrations/20200815151434_Initial.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Migrations/MarketingDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Migrations/MarketingDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Models/BasketChangeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Models/BasketChangeEvent.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Models/BasketChangeTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Models/BasketChangeTypeEnum.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Profiles/BasketChangeEventProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Profiles/BasketChangeEventProfile.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Program.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Properties/launchSettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Repositories/BasketChangeEventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Repositories/BasketChangeEventRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Repositories/IBasketChangeEventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Repositories/IBasketChangeEventRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Services/BasketChangeEventService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Services/BasketChangeEventService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Services/IBasketChangeEventService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Services/IBasketChangeEventService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Startup.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/Worker/TimedBasketChangeEventService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/Worker/TimedBasketChangeEventService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/appsettings.Development.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Marketing/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Marketing/appsettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Controllers/OrderController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/DbContexts/OrderDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/DbContexts/OrderDbContext.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Dockerfile -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Entities/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Entities/Order.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Entities/OrderLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Entities/OrderLine.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Extensions/ApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Extensions/ApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/GloboTicket.Services.Ordering.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/GloboTicket.Services.Ordering.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Messages/BasketCheckoutMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Messages/BasketCheckoutMessage.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Messages/BasketLineMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Messages/BasketLineMessage.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Messages/OrderPaymentRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Messages/OrderPaymentRequestMessage.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Messages/OrderPaymentUpdateMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Messages/OrderPaymentUpdateMessage.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Messaging/AzServiceBusConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Messaging/AzServiceBusConsumer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Messaging/IAzServiceBusConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Messaging/IAzServiceBusConsumer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Migrations/20200809150233_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Migrations/20200809150233_Initial.Designer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Migrations/20200809150233_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Migrations/20200809150233_Initial.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Migrations/OrderDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Migrations/OrderDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/OrderDB-create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/OrderDB-create.sql -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Program.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Properties/launchSettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Repositories/IOrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Repositories/IOrderRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Repositories/OrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Repositories/OrderRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/Startup.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/appsettings.Development.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Order/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Order/appsettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Payment/Controllers/PaymentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Payment/Controllers/PaymentController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Payment/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Payment/Dockerfile -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Payment/GloboTicket.Services.Payment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Payment/GloboTicket.Services.Payment.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Payment/Messages/OrderPaymentRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Payment/Messages/OrderPaymentRequestMessage.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Payment/Messages/OrderPaymentUpdateMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Payment/Messages/OrderPaymentUpdateMessage.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Payment/Model/PaymentInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Payment/Model/PaymentInfo.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Payment/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Payment/Program.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Payment/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Payment/Properties/launchSettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Payment/Services/ExternalGatewayPaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Payment/Services/ExternalGatewayPaymentService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Payment/Services/IExternalGatewayPaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Payment/Services/IExternalGatewayPaymentService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Payment/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Payment/Startup.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Payment/Worker/ServiceBusListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Payment/Worker/ServiceBusListener.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Payment/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Payment/appsettings.Development.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.Payment/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.Payment/appsettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.PaymentWorker/GloboTicket.Services.PaymentWorker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.PaymentWorker/GloboTicket.Services.PaymentWorker.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.PaymentWorker/Model/OrderPaymentRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.PaymentWorker/Model/OrderPaymentRequestMessage.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.PaymentWorker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.PaymentWorker/Program.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.PaymentWorker/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.PaymentWorker/Properties/launchSettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.PaymentWorker/Services/ServiceBusListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.PaymentWorker/Services/ServiceBusListener.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.PaymentWorker/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.PaymentWorker/appsettings.Development.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.PaymentWorker/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.PaymentWorker/appsettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/.config/dotnet-tools.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Controllers/BasketChangeEventController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Controllers/BasketChangeEventController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Controllers/BasketLinesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Controllers/BasketLinesController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Controllers/BasketsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Controllers/BasketsController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/DbContexts/ShoppingBasketDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/DbContexts/ShoppingBasketDbContext.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Dockerfile -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Entities/Basket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Entities/Basket.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Entities/BasketChangeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Entities/BasketChangeEvent.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Entities/BasketChangeTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Entities/BasketChangeTypeEnum.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Entities/BasketLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Entities/BasketLine.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Entities/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Entities/Event.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Extensions/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Extensions/HttpClientExtensions.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/GloboTicket.Services.ShoppingBasket.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/GloboTicket.Services.ShoppingBasket.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Messages/BasketCheckoutMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Messages/BasketCheckoutMessage.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Messages/BasketLineMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Messages/BasketLineMessage.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200630142717_InitialMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200630142717_InitialMigration.Designer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200630142717_InitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200630142717_InitialMigration.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200711083614_Events.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200711083614_Events.Designer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200711083614_Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200711083614_Events.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200711091215_BasketLinePrice.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200711091215_BasketLinePrice.Designer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200711091215_BasketLinePrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200711091215_BasketLinePrice.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200815084323_CouponIdAddedToBasket.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200815084323_CouponIdAddedToBasket.Designer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200815084323_CouponIdAddedToBasket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200815084323_CouponIdAddedToBasket.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200815102156_CouponIdNullable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200815102156_CouponIdNullable.Designer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200815102156_CouponIdNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200815102156_CouponIdNullable.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200815140846_BasketChangeEventAdded.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200815140846_BasketChangeEventAdded.Designer.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200815140846_BasketChangeEventAdded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/20200815140846_BasketChangeEventAdded.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/ShoppingBasketDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Migrations/ShoppingBasketDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Models/Basket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Models/Basket.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Models/BasketChangeEventForPublication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Models/BasketChangeEventForPublication.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Models/BasketCheckout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Models/BasketCheckout.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Models/BasketForCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Models/BasketForCreation.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Models/BasketLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Models/BasketLine.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Models/BasketLineForCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Models/BasketLineForCreation.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Models/BasketLineForUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Models/BasketLineForUpdate.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Models/Coupon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Models/Coupon.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Models/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Models/Event.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Profiles/BasketChangeEventProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Profiles/BasketChangeEventProfile.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Profiles/BasketCheckoutProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Profiles/BasketCheckoutProfile.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Profiles/BasketLineProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Profiles/BasketLineProfile.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Profiles/BasketProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Profiles/BasketProfile.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Profiles/EventProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Profiles/EventProfile.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Program.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Properties/launchSettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Properties/serviceDependencies.GloboTicketServicesShoppingBasket - Web Deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Properties/serviceDependencies.GloboTicketServicesShoppingBasket - Web Deploy.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/BasketChangeEventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/BasketChangeEventRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/BasketLinesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/BasketLinesRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/BasketRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/BasketRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/EventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/EventRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/IBasketChangeEventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/IBasketChangeEventRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/IBasketLinesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/IBasketLinesRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/IBasketRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/IBasketRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/IEventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Repositories/IEventRepository.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Services/DiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Services/DiscountService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Services/EventCatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Services/EventCatalogService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Services/IDiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Services/IDiscountService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Services/IEventCatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Services/IEventCatalogService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Shoppingbasket-create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Shoppingbasket-create.sql -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/Startup.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/appsettings.Development.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Services.ShoppingBasket/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Services.ShoppingBasket/appsettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Controllers/EventCatalogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Controllers/EventCatalogController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Controllers/OrderController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Controllers/ShoppingBasketController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Controllers/ShoppingBasketController.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Dockerfile -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Extensions/EnumerableOfGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Extensions/EnumerableOfGuid.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Extensions/HttpClientExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Extensions/HttpClientExtension.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Extensions/IRequestCookieCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Extensions/IRequestCookieCollection.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/GloboTicket.Web.Bff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/GloboTicket.Web.Bff.csproj -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/Api/Basket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/Api/Basket.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/Api/BasketForCheckout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/Api/BasketForCheckout.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/Api/BasketForCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/Api/BasketForCreation.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/Api/BasketLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/Api/BasketLine.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/Api/BasketLineForCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/Api/BasketLineForCreation.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/Api/BasketLineForUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/Api/BasketLineForUpdate.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/Api/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/Api/Category.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/Api/Coupon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/Api/Coupon.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/Api/CouponForUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/Api/CouponForUpdate.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/Api/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/Api/Event.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/Api/EventCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/Api/EventCategory.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/Api/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/Api/Order.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/Settings.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/View/BasketCheckoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/View/BasketCheckoutViewModel.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/View/BasketLineViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/View/BasketLineViewModel.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/View/BasketViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/View/BasketViewModel.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/View/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/View/ErrorViewModel.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/View/EventListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/View/EventListModel.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Models/View/OrderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Models/View/OrderViewModel.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Program.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Properties/launchSettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Services/DiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Services/DiscountService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Services/EventCatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Services/EventCatalogService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Services/IDiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Services/IDiscountService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Services/IEventCatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Services/IEventCatalogService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Services/IOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Services/IOrderService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Services/IShoppingBasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Services/IShoppingBasketService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Services/OrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Services/OrderService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Services/ShoppingBasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Services/ShoppingBasketService.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Startup.cs -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Views/EventCatalog/Detail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Views/EventCatalog/Detail.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Views/EventCatalog/DisplayTemplates/Event.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Views/EventCatalog/DisplayTemplates/Event.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Views/EventCatalog/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Views/EventCatalog/Index.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Views/Order/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Views/Order/Index.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Views/Shared/_ShoppingCartWidget.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Views/Shared/_ShoppingCartWidget.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Views/ShoppingBasket/Checkout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Views/ShoppingBasket/Checkout.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Views/ShoppingBasket/CheckoutComplete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Views/ShoppingBasket/CheckoutComplete.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Views/ShoppingBasket/EditorTemplates/BasketLineViewModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Views/ShoppingBasket/EditorTemplates/BasketLineViewModel.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Views/ShoppingBasket/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Views/ShoppingBasket/Index.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/appsettings.Development.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/appsettings.Production.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/appsettings.json -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/css/site.css -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/favicon.ico -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/fonts/OpenSans-SemiboldItalic.ttf -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/img/_Export_globoticket-horizontal-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/img/_Export_globoticket-horizontal-white.png -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/img/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/img/arrow-down.svg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/img/banjo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/img/banjo.jpg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/img/cart-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/img/cart-plus.svg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/img/michael.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/img/michael.jpg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/img/musical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/img/musical.jpg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/img/times.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/img/times.svg -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.Web.Bff/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /GloboTicket/GloboTicket.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/GloboTicket.sln -------------------------------------------------------------------------------- /GloboTicket/aks-globoticket.gateway.mobilebff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/aks-globoticket.gateway.mobilebff.yaml -------------------------------------------------------------------------------- /GloboTicket/aks-globoticket.gateway.webbff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/aks-globoticket.gateway.webbff.yaml -------------------------------------------------------------------------------- /GloboTicket/aks-globoticket.services.discount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/aks-globoticket.services.discount.yaml -------------------------------------------------------------------------------- /GloboTicket/aks-globoticket.services.eventcatalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/aks-globoticket.services.eventcatalog.yaml -------------------------------------------------------------------------------- /GloboTicket/aks-globoticket.services.marketing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/aks-globoticket.services.marketing.yaml -------------------------------------------------------------------------------- /GloboTicket/aks-globoticket.services.ordering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/aks-globoticket.services.ordering.yaml -------------------------------------------------------------------------------- /GloboTicket/aks-globoticket.services.payment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/aks-globoticket.services.payment.yaml -------------------------------------------------------------------------------- /GloboTicket/aks-globoticket.services.shoppingbasket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/aks-globoticket.services.shoppingbasket.yaml -------------------------------------------------------------------------------- /GloboTicket/aks-globoticket.web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/aks-globoticket.web.yaml -------------------------------------------------------------------------------- /GloboTicket/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/docker-compose.dcproj -------------------------------------------------------------------------------- /GloboTicket/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/docker-compose.override.yml -------------------------------------------------------------------------------- /GloboTicket/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/docker-compose.yml -------------------------------------------------------------------------------- /GloboTicket/pipelines/pipeline.gateway.mobilebff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/pipelines/pipeline.gateway.mobilebff.yaml -------------------------------------------------------------------------------- /GloboTicket/pipelines/pipeline.gateway.webbff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/pipelines/pipeline.gateway.webbff.yaml -------------------------------------------------------------------------------- /GloboTicket/pipelines/pipeline.globoticket.services.discount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/pipelines/pipeline.globoticket.services.discount.yaml -------------------------------------------------------------------------------- /GloboTicket/pipelines/pipeline.globoticket.services.eventcatalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/pipelines/pipeline.globoticket.services.eventcatalog.yaml -------------------------------------------------------------------------------- /GloboTicket/pipelines/pipeline.globoticket.services.marketing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/pipelines/pipeline.globoticket.services.marketing.yaml -------------------------------------------------------------------------------- /GloboTicket/pipelines/pipeline.globoticket.services.ordering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/pipelines/pipeline.globoticket.services.ordering.yaml -------------------------------------------------------------------------------- /GloboTicket/pipelines/pipeline.globoticket.services.payment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/pipelines/pipeline.globoticket.services.payment.yaml -------------------------------------------------------------------------------- /GloboTicket/pipelines/pipeline.globoticket.services.shoppingbasket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/pipelines/pipeline.globoticket.services.shoppingbasket.yaml -------------------------------------------------------------------------------- /GloboTicket/pipelines/pipeline.web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/GloboTicket/pipelines/pipeline.web.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/README.md -------------------------------------------------------------------------------- /load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vriesmarcel/deploying-asp-dot-net-core-microservices-kubernetes-aks/HEAD/load.sh --------------------------------------------------------------------------------