├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .dockerignore ├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── deploy └── k8s │ ├── azure-cli-check.sh │ ├── build-to-acr.services │ ├── build-to-acr.sh │ ├── certificates │ ├── .gitignore │ └── create-self-signed-certificate.sh │ ├── cleanup-service-principal.sh │ ├── create-acr.sh │ ├── create-aks.sh │ ├── deploy-application.sh │ ├── deploy-secrets.sh │ ├── helm-simple │ ├── apigateway │ │ ├── Chart.yaml │ │ └── templates │ │ │ └── ingress-gateway.yaml │ ├── backgroundtasks │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ ├── basket │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ ├── basketdata │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ ├── catalog │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ ├── coupon │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ ├── identity │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ ├── nosqldata │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ ├── ordering │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ ├── payment │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ ├── rabbitmq │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ ├── seq │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ ├── signalr │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ ├── sqldata │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ ├── webshoppingagg │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ ├── webspa │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ └── webstatus │ │ ├── Chart.yaml │ │ └── templates │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ ├── ingress-controller │ └── nginx-controller.yaml │ ├── quickstart.sh │ └── theme.sh ├── eShop-Learn.sln ├── src ├── ApiGateways │ ├── Aggregators │ │ └── Web.Shopping.HttpAggregator │ │ │ ├── Config │ │ │ └── UrlsConfig.cs │ │ │ ├── Controllers │ │ │ ├── BasketController.cs │ │ │ ├── CouponController.cs │ │ │ ├── HomeController.cs │ │ │ └── OrderController.cs │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.acr │ │ │ ├── Filters │ │ │ └── AuthorizeCheckOperationFilter.cs │ │ │ ├── Infrastructure │ │ │ └── HttpClientAuthorizationDelegatingHandler.cs │ │ │ ├── Models │ │ │ ├── AddBasketItemRequest.cs │ │ │ ├── BasketData.cs │ │ │ ├── CatalogItem.cs │ │ │ ├── CouponData.cs │ │ │ ├── OrderData.cs │ │ │ ├── OrderItemData.cs │ │ │ ├── UpdateBasketItemsRequest.cs │ │ │ └── UpdateBasketRequest.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Services │ │ │ ├── BasketService.cs │ │ │ ├── CatalogService.cs │ │ │ ├── CouponService.cs │ │ │ ├── GrpcCallerService.cs │ │ │ ├── IBasketService.cs │ │ │ ├── ICatalogService.cs │ │ │ ├── ICouponService.cs │ │ │ ├── IOrderApiClient.cs │ │ │ ├── IOrderingService.cs │ │ │ ├── OrderApiClient.cs │ │ │ └── OrderingService.cs │ │ │ ├── Startup.cs │ │ │ ├── Web.Shopping.HttpAggregator.csproj │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── appsettings.localhost.json │ │ │ ├── azds.yaml │ │ │ └── values.dev.yaml │ └── Envoy │ │ └── config │ │ └── webshopping │ │ └── envoy.yaml ├── BuildingBlocks │ ├── EventBus │ │ ├── EventBus │ │ │ ├── Abstractions │ │ │ │ ├── IDynamicIntegrationEventHandler.cs │ │ │ │ ├── IEventBus.cs │ │ │ │ └── IIntegrationEventHandler.cs │ │ │ ├── EventBus.csproj │ │ │ ├── Events │ │ │ │ └── IntegrationEvent.cs │ │ │ ├── Extensions │ │ │ │ └── GenericTypeExtensions.cs │ │ │ ├── IEventBusSubscriptionsManager.cs │ │ │ ├── InMemoryEventBusSubscriptionsManager.cs │ │ │ └── SubscriptionInfo.cs │ │ ├── EventBusRabbitMQ │ │ │ ├── DefaultRabbitMQPersistentConnection.cs │ │ │ ├── EventBusRabbitMQ.cs │ │ │ ├── EventBusRabbitMQ.csproj │ │ │ └── IRabbitMQPersistentConnection.cs │ │ ├── EventBusServiceBus │ │ │ ├── DefaultServiceBusPersisterConnection.cs │ │ │ ├── EventBusServiceBus.cs │ │ │ ├── EventBusServiceBus.csproj │ │ │ └── IServiceBusPersisterConnection.cs │ │ └── IntegrationEventLogEF │ │ │ ├── EventStateEnum.cs │ │ │ ├── IntegrationEventLogContext.cs │ │ │ ├── IntegrationEventLogEF.csproj │ │ │ ├── IntegrationEventLogEntry.cs │ │ │ ├── Services │ │ │ ├── IIntegrationEventLogService.cs │ │ │ └── IntegrationEventLogService.cs │ │ │ └── Utilities │ │ │ └── ResilientTransaction.cs │ └── WebHost │ │ └── WebHost.Customization │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── WebHost.Customization.csproj │ │ └── WebHostExtensions.cs ├── Services │ ├── Basket │ │ └── Basket.API │ │ │ ├── .dockerignore │ │ │ ├── Auth │ │ │ ├── Client │ │ │ │ ├── enable-token-client.js │ │ │ │ ├── oidc-token-manager.js │ │ │ │ └── popup.html │ │ │ └── Server │ │ │ │ └── AuthorizationHeaderParameterOperationFilter.cs │ │ │ ├── Basket.API.csproj │ │ │ ├── BasketSettings.cs │ │ │ ├── Controllers │ │ │ ├── BasketController.cs │ │ │ └── HomeController.cs │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.acr │ │ │ ├── Grpc │ │ │ └── BasketService.cs │ │ │ ├── Infrastructure │ │ │ ├── ActionResults │ │ │ │ └── InternalServerErrorObjectResult.cs │ │ │ ├── Exceptions │ │ │ │ ├── BasketDomainException.cs │ │ │ │ └── FailingMiddlewareAppBuilderExtensions.cs │ │ │ ├── Filters │ │ │ │ ├── HttpGlobalExceptionFilter.cs │ │ │ │ ├── JsonErrorResponse.cs │ │ │ │ └── ValidateModelStateFilter.cs │ │ │ ├── Middlewares │ │ │ │ ├── AuthorizeCheckOperationFilter.cs │ │ │ │ ├── ByPassAuthMiddleware.cs │ │ │ │ ├── FailingMiddleware.cs │ │ │ │ ├── FailingOptions.cs │ │ │ │ ├── FailingStartupFilter.cs │ │ │ │ └── FailingWebHostBuilderExtensions.cs │ │ │ └── Repositories │ │ │ │ └── RedisBasketRepository.cs │ │ │ ├── IntegrationEvents │ │ │ ├── EventHandling │ │ │ │ ├── OrderStartedIntegrationEventHandler.cs │ │ │ │ └── ProductPriceChangedIntegrationEventHandler.cs │ │ │ └── Events │ │ │ │ ├── OrderStartedIntegrationEvent.cs │ │ │ │ ├── ProductPriceChangedIntegrationEvent.cs │ │ │ │ └── UserCheckoutAcceptedIntegrationEvent.cs │ │ │ ├── Model │ │ │ ├── BasketCheckout.cs │ │ │ ├── BasketItem.cs │ │ │ ├── CustomerBasket.cs │ │ │ └── IBasketRepository.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Proto │ │ │ └── basket.proto │ │ │ ├── README.md │ │ │ ├── Services │ │ │ ├── IIdentityService.cs │ │ │ └── IdentityService.cs │ │ │ ├── Startup.cs │ │ │ ├── TestHttpResponseTrailersFeature.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── azds.yaml │ │ │ ├── values.dev.yaml │ │ │ └── web.config │ ├── Catalog │ │ └── Catalog.API │ │ │ ├── Catalog.API.csproj │ │ │ ├── CatalogSettings.cs │ │ │ ├── Controllers │ │ │ ├── CatalogController.cs │ │ │ ├── HomeController.cs │ │ │ └── PicController.cs │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.acr │ │ │ ├── Extensions │ │ │ ├── CatalogItemExtensions.cs │ │ │ ├── HostExtensions.cs │ │ │ ├── LinqSelectExtensions.cs │ │ │ └── WebHostExtensions.cs │ │ │ ├── Grpc │ │ │ └── CatalogService.cs │ │ │ ├── Infrastructure │ │ │ ├── ActionResults │ │ │ │ └── InternalServerErrorObjectResult.cs │ │ │ ├── CatalogContext.cs │ │ │ ├── CatalogContextSeed.cs │ │ │ ├── CatalogMigrations │ │ │ │ ├── 20161103152832_Initial.Designer.cs │ │ │ │ ├── 20161103152832_Initial.cs │ │ │ │ ├── 20161103153420_UpdateTableNames.Designer.cs │ │ │ │ ├── 20161103153420_UpdateTableNames.cs │ │ │ │ ├── 20170314083211_AddEventTable.Designer.cs │ │ │ │ ├── 20170314083211_AddEventTable.cs │ │ │ │ ├── 20170316012921_RefactoringToIntegrationEventLog.Designer.cs │ │ │ │ ├── 20170316012921_RefactoringToIntegrationEventLog.cs │ │ │ │ ├── 20170316120022_RefactoringEventBusNamespaces.Designer.cs │ │ │ │ ├── 20170316120022_RefactoringEventBusNamespaces.cs │ │ │ │ ├── 20170322124244_RemoveIntegrationEventLogs.Designer.cs │ │ │ │ ├── 20170322124244_RemoveIntegrationEventLogs.cs │ │ │ │ ├── 20170509130025_AddStockProductItem.Designer.cs │ │ │ │ ├── 20170509130025_AddStockProductItem.cs │ │ │ │ ├── 20170530133114_AddPictureFileName.Designer.cs │ │ │ │ ├── 20170530133114_AddPictureFileName.cs │ │ │ │ └── CatalogContextModelSnapshot.cs │ │ │ ├── EntityConfigurations │ │ │ │ ├── CatalogBrandEntityTypeConfiguration.cs │ │ │ │ ├── CatalogItemEntityTypeConfiguration.cs │ │ │ │ └── CatalogTypeEntityTypeConfiguration.cs │ │ │ ├── Exceptions │ │ │ │ └── CatalogDomainException.cs │ │ │ ├── Filters │ │ │ │ └── HttpGlobalExceptionFilter.cs │ │ │ └── IntegrationEventMigrations │ │ │ │ ├── 20170322145434_IntegrationEventInitial.Designer.cs │ │ │ │ ├── 20170322145434_IntegrationEventInitial.cs │ │ │ │ ├── 20190507184807_AddTransactionId.Designer.cs │ │ │ │ ├── 20190507184807_AddTransactionId.cs │ │ │ │ ├── IntegrationEventLogContextDesignTimeFactory.cs │ │ │ │ └── IntegrationEventLogContextModelSnapshot.cs │ │ │ ├── IntegrationEvents │ │ │ ├── CatalogIntegrationEventService.cs │ │ │ ├── EventHandling │ │ │ │ ├── AnyFutureIntegrationEventHandler.cs.txt │ │ │ │ ├── OrderStatusChangedToAwaitingStockValidationIntegrationEventHandler.cs │ │ │ │ └── OrderStatusChangedToPaidIntegrationEventHandler.cs │ │ │ ├── Events │ │ │ │ ├── OrderStatusChangedToAwaitingStockValidationIntegrationEvent.cs │ │ │ │ ├── OrderStatusChangedToPaidIntegrationEvent.cs │ │ │ │ ├── OrderStockConfirmedIntegrationEvent.cs │ │ │ │ ├── OrderStockRejectedIntegrationEvent.cs │ │ │ │ └── ProductPriceChangedIntegrationEvent.cs │ │ │ └── ICatalogIntegrationEventService.cs │ │ │ ├── Model │ │ │ ├── CatalogBrand.cs │ │ │ ├── CatalogItem.cs │ │ │ └── CatalogType.cs │ │ │ ├── Pics │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Proto │ │ │ └── catalog.proto │ │ │ ├── README.md │ │ │ ├── Setup │ │ │ ├── CatalogBrands.csv │ │ │ ├── CatalogItems.csv │ │ │ ├── CatalogItems.zip │ │ │ └── CatalogTypes.csv │ │ │ ├── Startup.cs │ │ │ ├── ViewModel │ │ │ └── PaginatedItemsViewModel.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── azds.yaml │ │ │ ├── values.dev.yaml │ │ │ └── web.config │ ├── Coupon │ │ └── Coupon.API │ │ │ ├── Controllers │ │ │ └── CouponController.cs │ │ │ ├── Coupon.API.csproj │ │ │ ├── CouponSettings.cs │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.acr │ │ │ ├── Dtos │ │ │ ├── CouponDto.cs │ │ │ ├── IMapper.cs │ │ │ └── Mapper.cs │ │ │ ├── ExceptionTrigger.cs │ │ │ ├── Extensions │ │ │ ├── IHostBuilderExtensions.cs │ │ │ └── IServiceCollectionExtensions.cs │ │ │ ├── Filters │ │ │ ├── AuthorizeCheckOperationFilter.cs │ │ │ └── ValidateModelAttribute.cs │ │ │ ├── Infrastructure │ │ │ ├── CouponSeed.cs │ │ │ ├── Models │ │ │ │ └── Coupon.cs │ │ │ └── Repositories │ │ │ │ ├── CouponContext.cs │ │ │ │ ├── CouponRepository.cs │ │ │ │ └── ICouponRepository.cs │ │ │ ├── IntegrationEvents │ │ │ ├── EventHandlers │ │ │ │ ├── OrderStatusChangedToAwaitingCouponValidationIntegrationEventHandler.cs │ │ │ │ └── OrderStatusChangedToCancelledIntegrationEventHandler.cs │ │ │ └── Events │ │ │ │ ├── OrderCouponConfirmedIntegrationEvent.cs │ │ │ │ ├── OrderCouponRejectedIntegrationEvent.cs │ │ │ │ ├── OrderStatusChangedToAwaitingCouponValidationIntegrationEvent.cs │ │ │ │ └── OrderStatusChangedToCancelledIntegrationEvent.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ ├── Identity │ │ └── Identity.API │ │ │ ├── .dockerignore │ │ │ ├── AppSettings.cs │ │ │ ├── Certificate │ │ │ ├── Certificate.cs │ │ │ └── idsrv3test.pfx │ │ │ ├── Configuration │ │ │ └── Config.cs │ │ │ ├── Controllers │ │ │ ├── AccountController.cs │ │ │ ├── ConsentController.cs │ │ │ └── HomeController.cs │ │ │ ├── Data │ │ │ ├── ApplicationDbContext.cs │ │ │ ├── ApplicationDbContextSeed.cs │ │ │ └── ConfigurationDbContextSeed.cs │ │ │ ├── Devspaces │ │ │ ├── DevspacesRedirectUriValidator.cs │ │ │ └── IdentityDevspacesBuilderExtensions.cs │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.acr │ │ │ ├── Extensions │ │ │ └── LinqSelectExtensions.cs │ │ │ ├── Factories │ │ │ ├── ApplicationDbContextFactory.cs │ │ │ ├── ConfigurationDbContextFactory.cs │ │ │ └── PersistedGrantDbContextFactory.cs │ │ │ ├── IWebHostExtensions.cs │ │ │ ├── Identity.API.csproj │ │ │ ├── Migrations │ │ │ ├── 20190729091724_InitialMigration.Designer.cs │ │ │ ├── 20190729091724_InitialMigration.cs │ │ │ ├── ApplicationDbContextModelSnapshot.cs │ │ │ ├── ConfigurationDb │ │ │ │ ├── 20190729092011_InitialConfigurationMigration.Designer.cs │ │ │ │ ├── 20190729092011_InitialConfigurationMigration.cs │ │ │ │ └── ConfigurationDbContextModelSnapshot.cs │ │ │ └── PersistedGrantDb │ │ │ │ ├── 20190729092100_InitialPersistedGrantMigration.Designer.cs │ │ │ │ ├── 20190729092100_InitialPersistedGrantMigration.cs │ │ │ │ └── PersistedGrantDbContextModelSnapshot.cs │ │ │ ├── Models │ │ │ ├── AccountViewModels │ │ │ │ ├── ConsentInputModel.cs │ │ │ │ ├── ConsentViewModel.cs │ │ │ │ ├── ForgotPasswordViewModel.cs │ │ │ │ ├── LoggedOutViewModel.cs │ │ │ │ ├── LoginViewModel.cs │ │ │ │ ├── LogoutViewModel.cs │ │ │ │ ├── RegisterViewModel.cs │ │ │ │ ├── ResetPasswordViewModel.cs │ │ │ │ ├── SendCodeViewModel.cs │ │ │ │ └── VerifyCodeViewModel.cs │ │ │ ├── ApplicationUser.cs │ │ │ ├── ErrorViewModel.cs │ │ │ └── ManageViewModels │ │ │ │ ├── AddPhoneNumberViewModel.cs │ │ │ │ ├── ChangePasswordViewModel.cs │ │ │ │ ├── ConfigureTwoFactorViewModel.cs │ │ │ │ ├── FactorViewModel.cs │ │ │ │ ├── IndexViewModel.cs │ │ │ │ ├── SetPasswordViewModel.cs │ │ │ │ └── VerifyPhoneNumberViewModel.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── README.md │ │ │ ├── Services │ │ │ ├── EFLoginService.cs │ │ │ ├── ILoginService.cs │ │ │ ├── IRedirectService.cs │ │ │ ├── ProfileService.cs │ │ │ └── RedirectService.cs │ │ │ ├── Setup │ │ │ ├── Users.csv │ │ │ └── images.zip │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ ├── Account │ │ │ │ ├── LoggedOut.cshtml │ │ │ │ ├── Login.cshtml │ │ │ │ ├── Logout.cshtml │ │ │ │ ├── Redirecting.cshtml │ │ │ │ └── Register.cshtml │ │ │ ├── Consent │ │ │ │ ├── Index.cshtml │ │ │ │ └── _ScopeListItem.cshtml │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _LoginPartial.cshtml │ │ │ │ ├── _ValidationScriptsPartial.cshtml │ │ │ │ └── _ValidationSummary.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.json │ │ │ ├── azds.yaml │ │ │ ├── bundleconfig.json │ │ │ ├── libman.json │ │ │ ├── values.dev.yaml │ │ │ ├── web.config │ │ │ └── wwwroot │ │ │ ├── _references.js │ │ │ ├── css │ │ │ ├── site.css │ │ │ └── site.min.css │ │ │ ├── favicon.ico │ │ │ ├── fonts │ │ │ ├── Oswald-Bold.eot │ │ │ ├── Oswald-Bold.svg │ │ │ ├── Oswald-Bold.ttf │ │ │ ├── Oswald-Bold.woff │ │ │ ├── Oswald-Bold.woff2 │ │ │ ├── Oswald-ExtraLight.eot │ │ │ ├── Oswald-ExtraLight.svg │ │ │ ├── Oswald-ExtraLight.ttf │ │ │ ├── Oswald-ExtraLight.woff │ │ │ ├── Oswald-ExtraLight.woff2 │ │ │ ├── Oswald-Light.eot │ │ │ ├── Oswald-Light.svg │ │ │ ├── Oswald-Light.ttf │ │ │ ├── Oswald-Light.woff │ │ │ ├── Oswald-Light.woff2 │ │ │ ├── Oswald-Medium.eot │ │ │ ├── Oswald-Medium.svg │ │ │ ├── Oswald-Medium.ttf │ │ │ ├── Oswald-Medium.woff │ │ │ ├── Oswald-Medium.woff2 │ │ │ ├── Oswald-Regular.eot │ │ │ ├── Oswald-Regular.svg │ │ │ ├── Oswald-Regular.ttf │ │ │ ├── Oswald-Regular.woff │ │ │ ├── Oswald-Regular.woff2 │ │ │ ├── Oswald-SemiBold.eot │ │ │ ├── Oswald-SemiBold.svg │ │ │ ├── Oswald-SemiBold.ttf │ │ │ ├── Oswald-SemiBold.woff │ │ │ └── Oswald-SemiBold.woff2 │ │ │ ├── icon.jpg │ │ │ ├── icon.png │ │ │ ├── images │ │ │ ├── arrow-down.png │ │ │ ├── arrow-right.svg │ │ │ ├── banner1.svg │ │ │ ├── banner2.svg │ │ │ ├── banner3.svg │ │ │ ├── banner4.svg │ │ │ ├── brand.PNG │ │ │ ├── brand_dark.PNG │ │ │ ├── cart.png │ │ │ ├── header.jpg │ │ │ ├── logo.svg │ │ │ ├── logo_color.svg │ │ │ ├── logout.PNG │ │ │ ├── main_banner.png │ │ │ ├── main_banner_text.png │ │ │ ├── main_banner_text.svg │ │ │ ├── main_footer_text.PNG │ │ │ ├── my_orders.PNG │ │ │ └── refresh.svg │ │ │ ├── js │ │ │ ├── site.js │ │ │ └── site.min.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ │ ├── jquery-validate │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ └── jquery │ │ │ ├── core.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ ├── Ordering │ │ ├── Ordering.API │ │ │ ├── Application │ │ │ │ ├── Behaviors │ │ │ │ │ ├── LoggingBehavior.cs │ │ │ │ │ ├── TransactionBehaviour.cs │ │ │ │ │ └── ValidatorBehavior.cs │ │ │ │ ├── Commands │ │ │ │ │ ├── CancelOrderCommand.cs │ │ │ │ │ ├── CancelOrderCommandHandler.cs │ │ │ │ │ ├── CouponConfirmedCommand.cs │ │ │ │ │ ├── CouponConfirmedCommandHandler.cs │ │ │ │ │ ├── CreateOrderCommand.cs │ │ │ │ │ ├── CreateOrderCommandHandler.cs │ │ │ │ │ ├── CreateOrderDraftCommand.cs │ │ │ │ │ ├── CreateOrderDraftCommandHandler.cs │ │ │ │ │ ├── IdentifiedCommand.cs │ │ │ │ │ ├── IdentifiedCommandHandler.cs │ │ │ │ │ ├── SetAwaitingStockValidationStatusCommand.cs │ │ │ │ │ ├── SetAwaitingStockValidationStatusCommandHandler.cs │ │ │ │ │ ├── SetPaidOrderStatusCommand.cs │ │ │ │ │ ├── SetPaidOrderStatusCommandHandler.cs │ │ │ │ │ ├── SetStockRejectedOrderStatusCommand.cs │ │ │ │ │ ├── SetStockRejectedOrderStatusCommandHandler.cs │ │ │ │ │ ├── ShipOrderCommand.cs │ │ │ │ │ ├── ShipOrderCommandHandler.cs │ │ │ │ │ ├── StockConfirmedCommand.cs │ │ │ │ │ └── StockConfirmedCommandHandler.cs │ │ │ │ ├── DomainEventHandlers │ │ │ │ │ ├── BuyerAndPaymentMethodVerified │ │ │ │ │ │ └── UpdateOrderWhenBuyerAndPaymentMethodVerifiedDomainEventHandler.cs │ │ │ │ │ ├── OrderCancelled │ │ │ │ │ │ └── OrderCancelledDomainEventHandler.cs │ │ │ │ │ ├── OrderCoupon │ │ │ │ │ │ └── OrderStatusChangedToAwaitingCouponValidationDomainEventHandler.cs │ │ │ │ │ ├── OrderGracePeriodConfirmed │ │ │ │ │ │ └── OrderStatusChangedToAwaitingStockValidationDomainEventHandler.cs │ │ │ │ │ ├── OrderPaid │ │ │ │ │ │ └── OrderStatusChangedToPaidDomainEventHandler.cs │ │ │ │ │ ├── OrderShipped │ │ │ │ │ │ └── OrderShippedDomainEventHandler.cs │ │ │ │ │ ├── OrderStartedEvent │ │ │ │ │ │ ├── SendEmailToCustomerWhenOrderStartedDomainEventHandler.cs │ │ │ │ │ │ └── ValidateOrAddBuyerAggregateWhenOrderStartedDomainEventHandler.cs │ │ │ │ │ └── OrderValidated │ │ │ │ │ │ └── OrderStatusChangedToValidatedDomainEventHandler.cs │ │ │ │ ├── IntegrationEvents │ │ │ │ │ ├── EventHandling │ │ │ │ │ │ ├── GracePeriodConfirmedIntegrationEventHandler.cs │ │ │ │ │ │ ├── OrderCouponConfirmedIntegrationEventHandler.cs │ │ │ │ │ │ ├── OrderCouponRejectedIntegrationEventHandler.cs │ │ │ │ │ │ ├── OrderPaymentFailedIntegrationEventHandler.cs │ │ │ │ │ │ ├── OrderPaymentSucceededIntegrationEventHandler.cs │ │ │ │ │ │ ├── OrderStockConfirmedIntegrationEventHandler.cs │ │ │ │ │ │ ├── OrderStockRejectedIntegrationEventHandler.cs │ │ │ │ │ │ └── UserCheckoutAcceptedIntegrationEventHandler.cs │ │ │ │ │ ├── Events │ │ │ │ │ │ ├── GracePeriodConfirmedIntegrationEvent.cs │ │ │ │ │ │ ├── OrderCouponConfirmedIntegrationEvent.cs │ │ │ │ │ │ ├── OrderCouponRejectedIntegrationEvent.cs │ │ │ │ │ │ ├── OrderPaymentFailedIntegrationEvent .cs │ │ │ │ │ │ ├── OrderPaymentSucceededIntegrationEvent.cs │ │ │ │ │ │ ├── OrderStartedIntegrationEvent.cs │ │ │ │ │ │ ├── OrderStatusChangedToAwaitingCouponValidationIntegrationEvent.cs │ │ │ │ │ │ ├── OrderStatusChangedToAwaitingStockValidationIntegrationEvent.cs │ │ │ │ │ │ ├── OrderStatusChangedToCancelledIntegrationEvent.cs │ │ │ │ │ │ ├── OrderStatusChangedToPaidIntegrationEvent.cs │ │ │ │ │ │ ├── OrderStatusChangedToShippedIntegrationEvent.cs │ │ │ │ │ │ ├── OrderStatusChangedToValidatedIntegrationEvent.cs │ │ │ │ │ │ ├── OrderStatusChangedTosubmittedIntegrationEvent.cs │ │ │ │ │ │ ├── OrderStockConfirmedIntegrationEvent.cs │ │ │ │ │ │ ├── OrderStockRejectedIntegrationEvent.cs │ │ │ │ │ │ └── UserCheckoutAcceptedIntegrationEvent.cs │ │ │ │ │ ├── IOrderingIntegrationEventService.cs │ │ │ │ │ └── OrderingIntegrationEventService.cs │ │ │ │ ├── Models │ │ │ │ │ ├── BasketItem.cs │ │ │ │ │ └── CustomerBasket.cs │ │ │ │ ├── Queries │ │ │ │ │ ├── IOrderQueries.cs │ │ │ │ │ ├── OrderQueries.cs │ │ │ │ │ └── OrderViewModel.cs │ │ │ │ └── Validations │ │ │ │ │ ├── CancelOrderCommandValidator.cs │ │ │ │ │ ├── CreateOrderCommandValidator.cs │ │ │ │ │ ├── IdentifiedCommandValidator.cs │ │ │ │ │ └── ShipOrderCommandValidator.cs │ │ │ ├── Controllers │ │ │ │ ├── HomeController.cs │ │ │ │ └── OrdersController.cs │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.acr │ │ │ ├── Extensions │ │ │ │ ├── BasketItemExtensions.cs │ │ │ │ └── LinqSelectExtensions.cs │ │ │ ├── Grpc │ │ │ │ └── OrderingService.cs │ │ │ ├── Infrastructure │ │ │ │ ├── ActionResults │ │ │ │ │ └── InternalServerErrorObjectResult.cs │ │ │ │ ├── Auth │ │ │ │ │ └── AuthorizationHeaderParameterOperationFilter.cs │ │ │ │ ├── AutofacModules │ │ │ │ │ ├── ApplicationModule.cs │ │ │ │ │ └── MediatorModule.cs │ │ │ │ ├── Factories │ │ │ │ │ └── OrderingDbContextFactory.cs │ │ │ │ ├── Filters │ │ │ │ │ ├── AuthorizeCheckOperationFilter.cs │ │ │ │ │ └── HttpGlobalExceptionFilter.cs │ │ │ │ ├── IntegrationEventMigrations │ │ │ │ │ ├── 20170330131634_IntegrationEventInitial.Designer.cs │ │ │ │ │ ├── 20170330131634_IntegrationEventInitial.cs │ │ │ │ │ ├── 20190507185219_AddTransactionId.Designer.cs │ │ │ │ │ ├── 20190507185219_AddTransactionId.cs │ │ │ │ │ ├── IntegrationEventLogContextDesignTimeFactory.cs │ │ │ │ │ └── IntegrationEventLogContextModelSnapshot.cs │ │ │ │ ├── Middlewares │ │ │ │ │ └── ByPassAuthMiddleware.cs │ │ │ │ ├── Migrations │ │ │ │ │ ├── 20170208181933_Initial.Designer.cs │ │ │ │ │ ├── 20170208181933_Initial.cs │ │ │ │ │ ├── 20170303085729_RequestsTable.Designer.cs │ │ │ │ │ ├── 20170303085729_RequestsTable.cs │ │ │ │ │ ├── 20170313100034_Domain_events.Designer.cs │ │ │ │ │ ├── 20170313100034_Domain_events.cs │ │ │ │ │ ├── 20170403082405_NoBuyerPropertyInOrder.Designer.cs │ │ │ │ │ ├── 20170403082405_NoBuyerPropertyInOrder.cs │ │ │ │ │ ├── 20170405110939_NoPaymentMethodPropertyInOrder.Designer.cs │ │ │ │ │ ├── 20170405110939_NoPaymentMethodPropertyInOrder.cs │ │ │ │ │ ├── 20170511112333_AddOrderDescription.Designer.cs │ │ │ │ │ ├── 20170511112333_AddOrderDescription.cs │ │ │ │ │ ├── 20170713111342_AdressAsValueObject.Designer.cs │ │ │ │ │ ├── 20170713111342_AdressAsValueObject.cs │ │ │ │ │ ├── 20180412143935_NamePropertyInBuyer.Designer.cs │ │ │ │ │ ├── 20180412143935_NamePropertyInBuyer.cs │ │ │ │ │ ├── 20190808132242_Change_Relation_Of_Orders.Designer.cs │ │ │ │ │ ├── 20190808132242_Change_Relation_Of_Orders.cs │ │ │ │ │ ├── 20200302140353_AddDiscountCouponMigration.Designer.cs │ │ │ │ │ ├── 20200302140353_AddDiscountCouponMigration.cs │ │ │ │ │ ├── 20200317130640_AddCouponCodeMigration.Designer.cs │ │ │ │ │ ├── 20200317130640_AddCouponCodeMigration.cs │ │ │ │ │ ├── 20200318113949_AddDiscountConfirmationMigration.Designer.cs │ │ │ │ │ ├── 20200318113949_AddDiscountConfirmationMigration.cs │ │ │ │ │ └── OrderingContextModelSnapshot.cs │ │ │ │ ├── OrderingContextSeed.cs │ │ │ │ └── Services │ │ │ │ │ ├── IIdentityService.cs │ │ │ │ │ └── IdentityService.cs │ │ │ ├── Ordering.API.csproj │ │ │ ├── OrderingSettings.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Proto │ │ │ │ └── ordering.proto │ │ │ ├── README.md │ │ │ ├── Setup │ │ │ │ └── CardTypes.csv │ │ │ ├── Startup.cs │ │ │ ├── appsettings.json │ │ │ ├── azds.yaml │ │ │ └── web.config │ │ ├── Ordering.BackgroundTasks │ │ │ ├── BackgroundTaskSettings.cs │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.acr │ │ │ ├── Events │ │ │ │ └── GracePeriodConfirmedIntegrationEvent.cs │ │ │ ├── Extensions │ │ │ │ └── CustomExtensionMethods.cs │ │ │ ├── Ordering.BackgroundTasks.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── Tasks │ │ │ │ └── GracePeriodManagerTask.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── Ordering.Domain │ │ │ ├── AggregatesModel │ │ │ │ ├── BuyerAggregate │ │ │ │ │ ├── Buyer.cs │ │ │ │ │ ├── CardType.cs │ │ │ │ │ ├── IBuyerRepository.cs │ │ │ │ │ └── PaymentMethod.cs │ │ │ │ └── OrderAggregate │ │ │ │ │ ├── Address.cs │ │ │ │ │ ├── IOrderRepository.cs │ │ │ │ │ ├── Order.cs │ │ │ │ │ ├── OrderItem.cs │ │ │ │ │ └── OrderStatus.cs │ │ │ ├── Events │ │ │ │ ├── BuyerPaymentMethodVerifiedDomainEvent.cs │ │ │ │ ├── OrderCancelledDomainEvent.cs │ │ │ │ ├── OrderShippedDomainEvent.cs │ │ │ │ ├── OrderStartedDomainEvent.cs │ │ │ │ ├── OrderStatusChangedToAwaitingCouponValidationDomainEvent.cs │ │ │ │ ├── OrderStatusChangedToAwaitingStockValidationDomainEvent.cs │ │ │ │ ├── OrderStatusChangedToPaidDomainEvent.cs │ │ │ │ └── OrderStatusChangedToValidatedDomainEvent.cs │ │ │ ├── Exceptions │ │ │ │ └── OrderingDomainException.cs │ │ │ ├── Ordering.Domain.csproj │ │ │ └── SeedWork │ │ │ │ ├── Entity.cs │ │ │ │ ├── Enumeration.cs │ │ │ │ ├── IAggregateRoot.cs │ │ │ │ ├── IRepository.cs │ │ │ │ ├── IUnitOfWork.cs │ │ │ │ └── ValueObject.cs │ │ ├── Ordering.Infrastructure │ │ │ ├── EntityConfigurations │ │ │ │ ├── BuyerEntityTypeConfiguration.cs │ │ │ │ ├── CardTypeEntityTypeConfiguration.cs │ │ │ │ ├── ClientRequestEntityTypeConfiguration.cs │ │ │ │ ├── OrderEntityTypeConfiguration.cs │ │ │ │ ├── OrderItemEntityTypeConfiguration.cs │ │ │ │ ├── OrderStatusEntityTypeConfiguration.cs │ │ │ │ └── PaymentMethodEntityTypeConfiguration.cs │ │ │ ├── Idempotency │ │ │ │ ├── ClientRequest.cs │ │ │ │ ├── IRequestManager.cs │ │ │ │ └── RequestManager.cs │ │ │ ├── MediatorExtension.cs │ │ │ ├── Ordering.Infrastructure.csproj │ │ │ ├── OrderingContext.cs │ │ │ └── Repositories │ │ │ │ ├── BuyerRepository.cs │ │ │ │ └── OrderRepository.cs │ │ └── Ordering.SignalrHub │ │ │ ├── AutofacModules │ │ │ └── ApplicationModule.cs │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.acr │ │ │ ├── IntegrationEvents │ │ │ ├── EventHandling │ │ │ │ ├── OrderStatusChangedToAwaitingCouponValidationIntegrationEventHandler.cs │ │ │ │ ├── OrderStatusChangedToAwaitingStockValidationIntegrationEventHandler.cs │ │ │ │ ├── OrderStatusChangedToCancelledIntegrationEventHandler.cs │ │ │ │ ├── OrderStatusChangedToPaidIntegrationEventHandler.cs │ │ │ │ ├── OrderStatusChangedToShippedIntegrationEventHandler.cs │ │ │ │ ├── OrderStatusChangedToSubmittedIntegrationEventHandler.cs │ │ │ │ └── OrderStatusChangedToValidatedIntegrationEventHandler.cs │ │ │ └── Events │ │ │ │ ├── OrderStatusChangedToAwaitingCouponValidationIntegrationEvent.cs │ │ │ │ ├── OrderStatusChangedToAwaitingStockValidationIntegrationEvent.cs │ │ │ │ ├── OrderStatusChangedToCancelledIntegrationEvent.cs │ │ │ │ ├── OrderStatusChangedToPaidIntegrationEvent.cs │ │ │ │ ├── OrderStatusChangedToShippedIntegrationEvent.cs │ │ │ │ ├── OrderStatusChangedToSubmittedIntegrationEvent.cs │ │ │ │ └── OrderStatusChangedToValidatedIntegrationEvent.cs │ │ │ ├── NotificationHub.cs │ │ │ ├── Ordering.SignalrHub.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── appsettings.json │ │ │ └── azds.yaml │ └── Payment │ │ └── Payment.API │ │ ├── Dockerfile │ │ ├── Dockerfile.acr │ │ ├── IntegrationEvents │ │ ├── EventHandling │ │ │ └── OrderStatusChangedToValidatedIntegrationEventHandler.cs │ │ └── Events │ │ │ ├── OrderPaymentFailedIntegrationEvent.cs │ │ │ ├── OrderPaymentSucceededIntegrationEvent.cs │ │ │ └── OrderStatusChangedToValidatedIntegrationEvent.cs │ │ ├── Payment.API.csproj │ │ ├── PaymentSettings.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── azds.yaml └── Web │ ├── WebSPA │ ├── .gitignore │ ├── AppSettings.cs │ ├── Client │ │ ├── .npmignore │ │ ├── .sass-lint.yml │ │ ├── angular.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── fonts │ │ │ │ │ ├── Oswald-Bold.eot │ │ │ │ │ ├── Oswald-Bold.svg │ │ │ │ │ ├── Oswald-Bold.ttf │ │ │ │ │ ├── Oswald-Bold.woff │ │ │ │ │ ├── Oswald-Bold.woff2 │ │ │ │ │ ├── Oswald-ExtraLight.eot │ │ │ │ │ ├── Oswald-ExtraLight.svg │ │ │ │ │ ├── Oswald-ExtraLight.ttf │ │ │ │ │ ├── Oswald-ExtraLight.woff │ │ │ │ │ ├── Oswald-ExtraLight.woff2 │ │ │ │ │ ├── Oswald-Light.eot │ │ │ │ │ ├── Oswald-Light.svg │ │ │ │ │ ├── Oswald-Light.ttf │ │ │ │ │ ├── Oswald-Light.woff │ │ │ │ │ ├── Oswald-Light.woff2 │ │ │ │ │ ├── Oswald-Medium.eot │ │ │ │ │ ├── Oswald-Medium.svg │ │ │ │ │ ├── Oswald-Medium.ttf │ │ │ │ │ ├── Oswald-Medium.woff │ │ │ │ │ ├── Oswald-Medium.woff2 │ │ │ │ │ ├── Oswald-Regular.eot │ │ │ │ │ ├── Oswald-Regular.svg │ │ │ │ │ ├── Oswald-Regular.ttf │ │ │ │ │ ├── Oswald-Regular.woff │ │ │ │ │ ├── Oswald-Regular.woff2 │ │ │ │ │ ├── Oswald-SemiBold.eot │ │ │ │ │ ├── Oswald-SemiBold.svg │ │ │ │ │ ├── Oswald-SemiBold.ttf │ │ │ │ │ ├── Oswald-SemiBold.woff │ │ │ │ │ └── Oswald-SemiBold.woff2 │ │ │ │ └── images │ │ │ │ │ ├── add.svg │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ ├── cart.svg │ │ │ │ │ ├── delete.svg │ │ │ │ │ ├── header.jpg │ │ │ │ │ ├── logo.svg │ │ │ │ │ ├── logo_color.svg │ │ │ │ │ ├── minus.svg │ │ │ │ │ ├── plus.svg │ │ │ │ │ ├── refresh.svg │ │ │ │ │ └── user.svg │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── guid.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── modules │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.scss │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── app.routes.ts │ │ │ │ ├── app.service.ts │ │ │ │ ├── basket │ │ │ │ │ ├── basket-status │ │ │ │ │ │ ├── basket-status.component.html │ │ │ │ │ │ ├── basket-status.component.scss │ │ │ │ │ │ └── basket-status.component.ts │ │ │ │ │ ├── basket.component.html │ │ │ │ │ ├── basket.component.scss │ │ │ │ │ ├── basket.component.ts │ │ │ │ │ ├── basket.module.ts │ │ │ │ │ └── basket.service.ts │ │ │ │ ├── campaigns │ │ │ │ │ ├── campaigns-detail │ │ │ │ │ │ ├── campaigns-detail.component.html │ │ │ │ │ │ ├── campaigns-detail.component.scss │ │ │ │ │ │ └── campaigns-detail.component.ts │ │ │ │ │ ├── campaigns.component.html │ │ │ │ │ ├── campaigns.component.scss │ │ │ │ │ ├── campaigns.component.ts │ │ │ │ │ ├── campaigns.module.ts │ │ │ │ │ └── campaigns.service.ts │ │ │ │ ├── catalog │ │ │ │ │ ├── catalog.component.html │ │ │ │ │ ├── catalog.component.scss │ │ │ │ │ ├── catalog.component.ts │ │ │ │ │ ├── catalog.module.ts │ │ │ │ │ └── catalog.service.ts │ │ │ │ ├── orders │ │ │ │ │ ├── orders-detail │ │ │ │ │ │ ├── orders-detail.component.html │ │ │ │ │ │ ├── orders-detail.component.scss │ │ │ │ │ │ └── orders-detail.component.ts │ │ │ │ │ ├── orders-new │ │ │ │ │ │ ├── orders-new.component.html │ │ │ │ │ │ ├── orders-new.component.scss │ │ │ │ │ │ └── orders-new.component.ts │ │ │ │ │ ├── orders.component.html │ │ │ │ │ ├── orders.component.scss │ │ │ │ │ ├── orders.component.ts │ │ │ │ │ ├── orders.module.ts │ │ │ │ │ └── orders.service.ts │ │ │ │ └── shared │ │ │ │ │ ├── components │ │ │ │ │ ├── header │ │ │ │ │ │ ├── header.html │ │ │ │ │ │ ├── header.scss │ │ │ │ │ │ └── header.ts │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── identity.html │ │ │ │ │ │ ├── identity.scss │ │ │ │ │ │ └── identity.ts │ │ │ │ │ ├── page-not-found │ │ │ │ │ │ ├── page-not-found.component.html │ │ │ │ │ │ ├── page-not-found.component.scss │ │ │ │ │ │ ├── page-not-found.component.spec.ts │ │ │ │ │ │ └── page-not-found.component.ts │ │ │ │ │ └── pager │ │ │ │ │ │ ├── pager.html │ │ │ │ │ │ ├── pager.scss │ │ │ │ │ │ └── pager.ts │ │ │ │ │ ├── models │ │ │ │ │ ├── basket.model.ts │ │ │ │ │ ├── basketCheckout.model.ts │ │ │ │ │ ├── basketItem.model.ts │ │ │ │ │ ├── campaign.model.ts │ │ │ │ │ ├── campaignItem.model.ts │ │ │ │ │ ├── catalog.model.ts │ │ │ │ │ ├── catalogBrand.model.ts │ │ │ │ │ ├── catalogItem.model.ts │ │ │ │ │ ├── catalogType.model.ts │ │ │ │ │ ├── configuration.model.ts │ │ │ │ │ ├── coupon.model.ts │ │ │ │ │ ├── identity.model.ts │ │ │ │ │ ├── order-detail.model.ts │ │ │ │ │ ├── order.model.ts │ │ │ │ │ ├── orderItem.model.ts │ │ │ │ │ └── pager.model.ts │ │ │ │ │ ├── pipes │ │ │ │ │ ├── uppercase.pipe.spec.ts │ │ │ │ │ └── uppercase.pipe.ts │ │ │ │ │ ├── services │ │ │ │ │ ├── basket.wrapper.service.ts │ │ │ │ │ ├── configuration.service.ts │ │ │ │ │ ├── data.service.ts │ │ │ │ │ ├── notification.service.ts │ │ │ │ │ ├── security.service.ts │ │ │ │ │ ├── signalr.service.ts │ │ │ │ │ └── storage.service.ts │ │ │ │ │ └── shared.module.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles │ │ │ │ ├── _bootstrap-overrides.scss │ │ │ │ ├── _button.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _toastr.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── globals.scss │ │ │ ├── test.ts │ │ │ ├── tsconfig.app.json │ │ │ ├── tsconfig.spec.json │ │ │ └── typings.d.ts │ │ ├── tsconfig.json │ │ ├── tslint.json │ │ ├── typedoc.json │ │ └── yarn.lock │ ├── Dockerfile │ ├── Dockerfile.acr │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Server │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ └── Infrastructure │ │ │ └── WebContextSeed.cs │ ├── Setup │ │ └── images.zip │ ├── Startup.cs │ ├── WebSPA.csproj │ ├── appsettings.json │ └── web.config │ └── WebStatus │ ├── Controllers │ └── HomeController.cs │ ├── Dockerfile │ ├── Dockerfile.acr │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ ├── Home │ │ └── Config.cshtml │ └── Shared │ │ └── Error.cshtml │ ├── WebStatus.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bundleconfig.json │ ├── libman.json │ └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ └── lib │ ├── bootstrap │ └── dist │ │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ └── jquery │ ├── core.js │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.slim.js │ ├── jquery.slim.min.js │ └── jquery.slim.min.map └── tests └── Services └── Coupon └── Coupon.API.Tests ├── Controllers └── CouponControllerTests.cs └── Coupon.API.Tests.csproj /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/SECURITY.md -------------------------------------------------------------------------------- /deploy/k8s/azure-cli-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/azure-cli-check.sh -------------------------------------------------------------------------------- /deploy/k8s/build-to-acr.services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/build-to-acr.services -------------------------------------------------------------------------------- /deploy/k8s/build-to-acr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/build-to-acr.sh -------------------------------------------------------------------------------- /deploy/k8s/certificates/.gitignore: -------------------------------------------------------------------------------- 1 | *.cer* 2 | *.key 3 | -------------------------------------------------------------------------------- /deploy/k8s/certificates/create-self-signed-certificate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/certificates/create-self-signed-certificate.sh -------------------------------------------------------------------------------- /deploy/k8s/cleanup-service-principal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/cleanup-service-principal.sh -------------------------------------------------------------------------------- /deploy/k8s/create-acr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/create-acr.sh -------------------------------------------------------------------------------- /deploy/k8s/create-aks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/create-aks.sh -------------------------------------------------------------------------------- /deploy/k8s/deploy-application.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/deploy-application.sh -------------------------------------------------------------------------------- /deploy/k8s/deploy-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/deploy-secrets.sh -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/apigateway/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/apigateway/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/apigateway/templates/ingress-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/apigateway/templates/ingress-gateway.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/backgroundtasks/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/backgroundtasks/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/backgroundtasks/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/backgroundtasks/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/backgroundtasks/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/backgroundtasks/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/backgroundtasks/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/backgroundtasks/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/basket/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/basket/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/basket/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/basket/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/basket/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/basket/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/basket/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/basket/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/basket/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/basket/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/basketdata/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/basketdata/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/basketdata/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/basketdata/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/basketdata/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/basketdata/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/catalog/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/catalog/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/catalog/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/catalog/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/catalog/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/catalog/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/catalog/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/catalog/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/catalog/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/catalog/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/coupon/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/coupon/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/coupon/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/coupon/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/coupon/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/coupon/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/coupon/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/coupon/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/coupon/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/coupon/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/identity/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/identity/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/identity/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/identity/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/identity/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/identity/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/identity/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/identity/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/identity/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/identity/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/nosqldata/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/nosqldata/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/nosqldata/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/nosqldata/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/nosqldata/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/nosqldata/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/ordering/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/ordering/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/ordering/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/ordering/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/ordering/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/ordering/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/ordering/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/ordering/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/ordering/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/ordering/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/payment/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/payment/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/payment/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/payment/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/payment/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/payment/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/payment/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/payment/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/rabbitmq/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/rabbitmq/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/rabbitmq/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/rabbitmq/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/rabbitmq/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/rabbitmq/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/seq/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/seq/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/seq/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/seq/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/seq/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/seq/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/seq/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/seq/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/signalr/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/signalr/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/signalr/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/signalr/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/signalr/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/signalr/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/signalr/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/signalr/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/sqldata/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/sqldata/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/sqldata/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/sqldata/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/sqldata/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/sqldata/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/webshoppingagg/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/webshoppingagg/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/webshoppingagg/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/webshoppingagg/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/webshoppingagg/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/webshoppingagg/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/webshoppingagg/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/webshoppingagg/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/webspa/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/webspa/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/webspa/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/webspa/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/webspa/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/webspa/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/webspa/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/webspa/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/webspa/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/webspa/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/webstatus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/webstatus/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/webstatus/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/webstatus/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/webstatus/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/webstatus/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/webstatus/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/webstatus/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm-simple/webstatus/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/helm-simple/webstatus/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/ingress-controller/nginx-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/ingress-controller/nginx-controller.yaml -------------------------------------------------------------------------------- /deploy/k8s/quickstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/quickstart.sh -------------------------------------------------------------------------------- /deploy/k8s/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/deploy/k8s/theme.sh -------------------------------------------------------------------------------- /eShop-Learn.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/eShop-Learn.sln -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Config/UrlsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Config/UrlsConfig.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Dockerfile -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Dockerfile.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Dockerfile.acr -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Models/BasketData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Models/BasketData.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Models/CatalogItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Models/CatalogItem.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Models/CouponData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Models/CouponData.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Models/OrderData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Models/OrderData.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Models/OrderItemData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Models/OrderItemData.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Program.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/BasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/BasketService.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/CatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/CatalogService.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/CouponService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/CouponService.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/IBasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/IBasketService.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/ICatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/ICatalogService.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/ICouponService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/ICouponService.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/IOrderApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/IOrderApiClient.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/IOrderingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/IOrderingService.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/OrderApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/OrderApiClient.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/OrderingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Services/OrderingService.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/Startup.cs -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/appsettings.Development.json -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/appsettings.json -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/appsettings.localhost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/appsettings.localhost.json -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/azds.yaml -------------------------------------------------------------------------------- /src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/values.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Aggregators/Web.Shopping.HttpAggregator/values.dev.yaml -------------------------------------------------------------------------------- /src/ApiGateways/Envoy/config/webshopping/envoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/ApiGateways/Envoy/config/webshopping/envoy.yaml -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBus/Abstractions/IDynamicIntegrationEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBus/Abstractions/IDynamicIntegrationEventHandler.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBus/Abstractions/IEventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBus/Abstractions/IEventBus.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBus/Abstractions/IIntegrationEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBus/Abstractions/IIntegrationEventHandler.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBus/EventBus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBus/EventBus.csproj -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBus/Events/IntegrationEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBus/Events/IntegrationEvent.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBus/Extensions/GenericTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBus/Extensions/GenericTypeExtensions.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBus/IEventBusSubscriptionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBus/IEventBusSubscriptionsManager.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBus/InMemoryEventBusSubscriptionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBus/InMemoryEventBusSubscriptionsManager.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBus/SubscriptionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBus/SubscriptionInfo.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBusRabbitMQ/DefaultRabbitMQPersistentConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBusRabbitMQ/DefaultRabbitMQPersistentConnection.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBusRabbitMQ/EventBusRabbitMQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBusRabbitMQ/EventBusRabbitMQ.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBusRabbitMQ/EventBusRabbitMQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBusRabbitMQ/EventBusRabbitMQ.csproj -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBusRabbitMQ/IRabbitMQPersistentConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBusRabbitMQ/IRabbitMQPersistentConnection.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBusServiceBus/EventBusServiceBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBusServiceBus/EventBusServiceBus.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBusServiceBus/EventBusServiceBus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBusServiceBus/EventBusServiceBus.csproj -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBusServiceBus/IServiceBusPersisterConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/EventBusServiceBus/IServiceBusPersisterConnection.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/IntegrationEventLogEF/EventStateEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/IntegrationEventLogEF/EventStateEnum.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogContext.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogEF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogEF.csproj -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogEntry.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/IntegrationEventLogEF/Utilities/ResilientTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/EventBus/IntegrationEventLogEF/Utilities/ResilientTransaction.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/WebHost/WebHost.Customization/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/WebHost/WebHost.Customization/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/BuildingBlocks/WebHost/WebHost.Customization/WebHost.Customization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/WebHost/WebHost.Customization/WebHost.Customization.csproj -------------------------------------------------------------------------------- /src/BuildingBlocks/WebHost/WebHost.Customization/WebHostExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/BuildingBlocks/WebHost/WebHost.Customization/WebHostExtensions.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/.dockerignore -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Auth/Client/enable-token-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Auth/Client/enable-token-client.js -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Auth/Client/oidc-token-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Auth/Client/oidc-token-manager.js -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Auth/Client/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Auth/Client/popup.html -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Basket.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Basket.API.csproj -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/BasketSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/BasketSettings.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Controllers/BasketController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Controllers/BasketController.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Dockerfile.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Dockerfile.acr -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Grpc/BasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Grpc/BasketService.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Infrastructure/Exceptions/BasketDomainException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Infrastructure/Exceptions/BasketDomainException.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Infrastructure/Filters/HttpGlobalExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Infrastructure/Filters/HttpGlobalExceptionFilter.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Infrastructure/Filters/JsonErrorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Infrastructure/Filters/JsonErrorResponse.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Infrastructure/Filters/ValidateModelStateFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Infrastructure/Filters/ValidateModelStateFilter.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Infrastructure/Middlewares/ByPassAuthMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Infrastructure/Middlewares/ByPassAuthMiddleware.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Infrastructure/Middlewares/FailingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Infrastructure/Middlewares/FailingMiddleware.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Infrastructure/Middlewares/FailingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Infrastructure/Middlewares/FailingOptions.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Infrastructure/Middlewares/FailingStartupFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Infrastructure/Middlewares/FailingStartupFilter.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Infrastructure/Repositories/RedisBasketRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Infrastructure/Repositories/RedisBasketRepository.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Model/BasketCheckout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Model/BasketCheckout.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Model/BasketItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Model/BasketItem.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Model/CustomerBasket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Model/CustomerBasket.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Model/IBasketRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Model/IBasketRepository.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Proto/basket.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Proto/basket.proto -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/README.md -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Services/IIdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Services/IIdentityService.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Services/IdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Services/IdentityService.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/TestHttpResponseTrailersFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/TestHttpResponseTrailersFeature.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/azds.yaml -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/values.dev.yaml: -------------------------------------------------------------------------------- 1 | ingress: 2 | enabled: true 3 | tls: [] -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Basket/Basket.API/web.config -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Catalog.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Catalog.API.csproj -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/CatalogSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/CatalogSettings.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Controllers/CatalogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Controllers/CatalogController.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Controllers/PicController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Controllers/PicController.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Dockerfile.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Dockerfile.acr -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Extensions/CatalogItemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Extensions/CatalogItemExtensions.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Extensions/HostExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Extensions/HostExtensions.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Extensions/LinqSelectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Extensions/LinqSelectExtensions.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Extensions/WebHostExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Extensions/WebHostExtensions.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Grpc/CatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Grpc/CatalogService.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Infrastructure/CatalogContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Infrastructure/CatalogContext.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Infrastructure/CatalogContextSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Infrastructure/CatalogContextSeed.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Infrastructure/Exceptions/CatalogDomainException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Infrastructure/Exceptions/CatalogDomainException.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Infrastructure/Filters/HttpGlobalExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Infrastructure/Filters/HttpGlobalExceptionFilter.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/IntegrationEvents/CatalogIntegrationEventService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/IntegrationEvents/CatalogIntegrationEventService.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/IntegrationEvents/EventHandling/AnyFutureIntegrationEventHandler.cs.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | // To implement ProductPriceChangedEvent.cs here 4 | -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Model/CatalogBrand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Model/CatalogBrand.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Model/CatalogItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Model/CatalogItem.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Model/CatalogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Model/CatalogType.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Pics/1.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Pics/10.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Pics/11.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Pics/12.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Pics/13.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Pics/14.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Pics/2.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Pics/3.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Pics/4.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Pics/5.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Pics/6.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Pics/7.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Pics/8.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Pics/9.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Proto/catalog.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Proto/catalog.proto -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/README.md -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Setup/CatalogBrands.csv: -------------------------------------------------------------------------------- 1 | CatalogBrand 2 | .NET 3 | Other 4 | -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Setup/CatalogItems.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Setup/CatalogItems.csv -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Setup/CatalogItems.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Setup/CatalogItems.zip -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Setup/CatalogTypes.csv: -------------------------------------------------------------------------------- 1 | CatalogType 2 | Mug 3 | T-Shirt 4 | Pin -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/ViewModel/PaginatedItemsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/ViewModel/PaginatedItemsViewModel.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/azds.yaml -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/values.dev.yaml: -------------------------------------------------------------------------------- 1 | ingress: 2 | enabled: true 3 | tls: [] -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Catalog/Catalog.API/web.config -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Controllers/CouponController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Controllers/CouponController.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Coupon.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Coupon.API.csproj -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/CouponSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/CouponSettings.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Dockerfile.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Dockerfile.acr -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Dtos/CouponDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Dtos/CouponDto.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Dtos/IMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Dtos/IMapper.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Dtos/Mapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Dtos/Mapper.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/ExceptionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/ExceptionTrigger.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Extensions/IHostBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Extensions/IHostBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Extensions/IServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Extensions/IServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Filters/AuthorizeCheckOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Filters/AuthorizeCheckOperationFilter.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Filters/ValidateModelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Filters/ValidateModelAttribute.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Infrastructure/CouponSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Infrastructure/CouponSeed.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Infrastructure/Models/Coupon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Infrastructure/Models/Coupon.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Infrastructure/Repositories/CouponContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Infrastructure/Repositories/CouponContext.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Infrastructure/Repositories/CouponRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Infrastructure/Repositories/CouponRepository.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Infrastructure/Repositories/ICouponRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Infrastructure/Repositories/ICouponRepository.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/Coupon/Coupon.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Coupon/Coupon.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/.dockerignore -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/AppSettings.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Certificate/Certificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Certificate/Certificate.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Certificate/idsrv3test.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Certificate/idsrv3test.pfx -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Configuration/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Configuration/Config.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Controllers/ConsentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Controllers/ConsentController.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Data/ApplicationDbContextSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Data/ApplicationDbContextSeed.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Data/ConfigurationDbContextSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Data/ConfigurationDbContextSeed.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Devspaces/DevspacesRedirectUriValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Devspaces/DevspacesRedirectUriValidator.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Devspaces/IdentityDevspacesBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Devspaces/IdentityDevspacesBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Dockerfile.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Dockerfile.acr -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Extensions/LinqSelectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Extensions/LinqSelectExtensions.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Factories/ApplicationDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Factories/ApplicationDbContextFactory.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Factories/ConfigurationDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Factories/ConfigurationDbContextFactory.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Factories/PersistedGrantDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Factories/PersistedGrantDbContextFactory.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/IWebHostExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/IWebHostExtensions.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Identity.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Identity.API.csproj -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Migrations/20190729091724_InitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Migrations/20190729091724_InitialMigration.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Models/AccountViewModels/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Models/AccountViewModels/ConsentInputModel.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Models/AccountViewModels/ConsentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Models/AccountViewModels/ConsentViewModel.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Models/AccountViewModels/LoggedOutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Models/AccountViewModels/LoggedOutViewModel.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Models/AccountViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Models/AccountViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Models/AccountViewModels/LogoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Models/AccountViewModels/LogoutViewModel.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Models/AccountViewModels/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Models/AccountViewModels/RegisterViewModel.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Models/AccountViewModels/SendCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Models/AccountViewModels/SendCodeViewModel.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Models/AccountViewModels/VerifyCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Models/AccountViewModels/VerifyCodeViewModel.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Models/ManageViewModels/FactorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Models/ManageViewModels/FactorViewModel.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Models/ManageViewModels/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Models/ManageViewModels/IndexViewModel.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Models/ManageViewModels/SetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Models/ManageViewModels/SetPasswordViewModel.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/README.md -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Services/EFLoginService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Services/EFLoginService.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Services/ILoginService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Services/ILoginService.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Services/IRedirectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Services/IRedirectService.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Services/ProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Services/ProfileService.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Services/RedirectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Services/RedirectService.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Setup/Users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Setup/Users.csv -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Setup/images.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Setup/images.zip -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Views/Account/Logout.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/Account/Redirecting.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Views/Account/Redirecting.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Views/Consent/Index.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/Consent/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Views/Consent/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Views/Shared/_ValidationSummary.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/azds.yaml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/bundleconfig.json -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/libman.json -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/values.dev.yaml: -------------------------------------------------------------------------------- 1 | enableDevspaces: "true" 2 | -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/web.config -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/_references.js -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Bold.eot -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Bold.svg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Bold.ttf -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Bold.woff -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Bold.woff2 -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-ExtraLight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-ExtraLight.eot -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-ExtraLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-ExtraLight.svg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-ExtraLight.ttf -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-ExtraLight.woff -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-ExtraLight.woff2 -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Light.eot -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Light.svg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Light.ttf -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Light.woff -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Light.woff2 -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Medium.eot -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Medium.svg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Medium.ttf -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Medium.woff -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Medium.woff2 -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Regular.eot -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Regular.svg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Regular.ttf -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Regular.woff -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-Regular.woff2 -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-SemiBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-SemiBold.eot -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-SemiBold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-SemiBold.svg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-SemiBold.ttf -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-SemiBold.woff -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/fonts/Oswald-SemiBold.woff2 -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/icon.jpg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/icon.png -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/arrow-down.png -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/arrow-right.svg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/brand.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/brand.PNG -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/brand_dark.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/brand_dark.PNG -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/cart.png -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/header.jpg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/logo.svg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/logo_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/logo_color.svg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/logout.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/logout.PNG -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/main_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/main_banner.png -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/main_banner_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/main_banner_text.png -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/main_banner_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/main_banner_text.svg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/main_footer_text.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/main_footer_text.PNG -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/my_orders.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/my_orders.PNG -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/images/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/images/refresh.svg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/lib/jquery-validate/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/lib/jquery-validate/jquery.validate.js -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/lib/jquery/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/lib/jquery/core.js -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/lib/jquery/jquery.js -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/lib/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/lib/jquery/jquery.min.map -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/lib/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/lib/jquery/jquery.slim.js -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/lib/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/lib/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/lib/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Identity/Identity.API/wwwroot/lib/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Application/Behaviors/LoggingBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Application/Behaviors/LoggingBehavior.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Application/Behaviors/TransactionBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Application/Behaviors/TransactionBehaviour.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Application/Behaviors/ValidatorBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Application/Behaviors/ValidatorBehavior.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Application/Commands/CancelOrderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Application/Commands/CancelOrderCommand.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Application/Commands/CancelOrderCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Application/Commands/CancelOrderCommandHandler.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Application/Commands/CouponConfirmedCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Application/Commands/CouponConfirmedCommand.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Application/Commands/CreateOrderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Application/Commands/CreateOrderCommand.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Application/Commands/IdentifiedCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Application/Commands/IdentifiedCommand.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Application/Commands/ShipOrderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Application/Commands/ShipOrderCommand.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Application/Commands/StockConfirmedCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Application/Commands/StockConfirmedCommand.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Application/Models/BasketItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Application/Models/BasketItem.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Application/Models/CustomerBasket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Application/Models/CustomerBasket.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Application/Queries/IOrderQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Application/Queries/IOrderQueries.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Application/Queries/OrderQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Application/Queries/OrderQueries.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Application/Queries/OrderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Application/Queries/OrderViewModel.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Controllers/OrdersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Controllers/OrdersController.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Dockerfile.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Dockerfile.acr -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Extensions/BasketItemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Extensions/BasketItemExtensions.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Extensions/LinqSelectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Extensions/LinqSelectExtensions.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Grpc/OrderingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Grpc/OrderingService.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Infrastructure/OrderingContextSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Infrastructure/OrderingContextSeed.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Infrastructure/Services/IIdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Infrastructure/Services/IIdentityService.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Infrastructure/Services/IdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Infrastructure/Services/IdentityService.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Ordering.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Ordering.API.csproj -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/OrderingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/OrderingSettings.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Proto/ordering.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Proto/ordering.proto -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/README.md -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Setup/CardTypes.csv: -------------------------------------------------------------------------------- 1 | CardType 2 | Amex 3 | Visa 4 | MasterCard 5 | Capital One -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/azds.yaml -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.API/web.config -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.BackgroundTasks/BackgroundTaskSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.BackgroundTasks/BackgroundTaskSettings.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.BackgroundTasks/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.BackgroundTasks/Dockerfile -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.BackgroundTasks/Dockerfile.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.BackgroundTasks/Dockerfile.acr -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.BackgroundTasks/Ordering.BackgroundTasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.BackgroundTasks/Ordering.BackgroundTasks.csproj -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.BackgroundTasks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.BackgroundTasks/Program.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.BackgroundTasks/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.BackgroundTasks/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.BackgroundTasks/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.BackgroundTasks/Startup.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.BackgroundTasks/Tasks/GracePeriodManagerTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.BackgroundTasks/Tasks/GracePeriodManagerTask.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.BackgroundTasks/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.BackgroundTasks/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.BackgroundTasks/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.BackgroundTasks/appsettings.json -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/AggregatesModel/BuyerAggregate/Buyer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/AggregatesModel/BuyerAggregate/Buyer.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/AggregatesModel/BuyerAggregate/CardType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/AggregatesModel/BuyerAggregate/CardType.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/AggregatesModel/OrderAggregate/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/AggregatesModel/OrderAggregate/Address.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/AggregatesModel/OrderAggregate/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/AggregatesModel/OrderAggregate/Order.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/AggregatesModel/OrderAggregate/OrderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/AggregatesModel/OrderAggregate/OrderItem.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/Events/OrderCancelledDomainEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/Events/OrderCancelledDomainEvent.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/Events/OrderShippedDomainEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/Events/OrderShippedDomainEvent.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/Events/OrderStartedDomainEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/Events/OrderStartedDomainEvent.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/Exceptions/OrderingDomainException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/Exceptions/OrderingDomainException.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/Ordering.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/Ordering.Domain.csproj -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/SeedWork/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/SeedWork/Entity.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/SeedWork/Enumeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/SeedWork/Enumeration.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/SeedWork/IAggregateRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/SeedWork/IAggregateRoot.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/SeedWork/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/SeedWork/IRepository.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/SeedWork/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/SeedWork/IUnitOfWork.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/SeedWork/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Domain/SeedWork/ValueObject.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Infrastructure/Idempotency/ClientRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Infrastructure/Idempotency/ClientRequest.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Infrastructure/Idempotency/IRequestManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Infrastructure/Idempotency/IRequestManager.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Infrastructure/Idempotency/RequestManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Infrastructure/Idempotency/RequestManager.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Infrastructure/MediatorExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Infrastructure/MediatorExtension.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Infrastructure/Ordering.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Infrastructure/Ordering.Infrastructure.csproj -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Infrastructure/Repositories/BuyerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Infrastructure/Repositories/BuyerRepository.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Infrastructure/Repositories/OrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.Infrastructure/Repositories/OrderRepository.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.SignalrHub/AutofacModules/ApplicationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.SignalrHub/AutofacModules/ApplicationModule.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.SignalrHub/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.SignalrHub/Dockerfile -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.SignalrHub/Dockerfile.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.SignalrHub/Dockerfile.acr -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.SignalrHub/NotificationHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.SignalrHub/NotificationHub.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.SignalrHub/Ordering.SignalrHub.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.SignalrHub/Ordering.SignalrHub.csproj -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.SignalrHub/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.SignalrHub/Program.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.SignalrHub/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.SignalrHub/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.SignalrHub/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.SignalrHub/Startup.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.SignalrHub/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.SignalrHub/appsettings.json -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.SignalrHub/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Ordering/Ordering.SignalrHub/azds.yaml -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Payment/Payment.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Dockerfile.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Payment/Payment.API/Dockerfile.acr -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Payment.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Payment/Payment.API/Payment.API.csproj -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/PaymentSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Payment/Payment.API/PaymentSettings.cs -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Payment/Payment.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Payment/Payment.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Payment/Payment.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Payment/Payment.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Payment/Payment.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Services/Payment/Payment.API/azds.yaml -------------------------------------------------------------------------------- /src/Web/WebSPA/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/.gitignore -------------------------------------------------------------------------------- /src/Web/WebSPA/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/AppSettings.cs -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/.npmignore -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/.sass-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/.sass-lint.yml -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/angular.json -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/package-lock.json -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/package.json -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Bold.eot -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Bold.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Bold.ttf -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Bold.woff -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Bold.woff2 -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-ExtraLight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-ExtraLight.eot -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-ExtraLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-ExtraLight.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-ExtraLight.ttf -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-ExtraLight.woff -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-ExtraLight.woff2 -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Light.eot -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Light.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Light.ttf -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Light.woff -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Light.woff2 -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Medium.eot -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Medium.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Medium.ttf -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Medium.woff -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Medium.woff2 -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Regular.eot -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Regular.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Regular.ttf -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Regular.woff -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-Regular.woff2 -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-SemiBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-SemiBold.eot -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-SemiBold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-SemiBold.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-SemiBold.ttf -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-SemiBold.woff -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/fonts/Oswald-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/fonts/Oswald-SemiBold.woff2 -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/images/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/images/add.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/images/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/images/arrow-right.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/images/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/images/cart.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/images/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/images/delete.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/images/header.jpg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/images/logo.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/images/logo_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/images/logo_color.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/images/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/images/minus.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/images/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/images/plus.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/images/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/images/refresh.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/assets/images/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/assets/images/user.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/environments/environment.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/favicon.ico -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/guid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/guid.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/index.html -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/main.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/app.component.html -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/app.component.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/app.component.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/app.module.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/app.routes.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/app.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/basket/basket-status/basket-status.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/basket/basket-status/basket-status.component.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/basket/basket.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/basket/basket.component.html -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/basket/basket.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/basket/basket.component.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/basket/basket.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/basket/basket.component.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/basket/basket.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/basket/basket.module.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/basket/basket.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/basket/basket.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/campaigns/campaigns.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/campaigns/campaigns.component.html -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/campaigns/campaigns.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/campaigns/campaigns.component.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/campaigns/campaigns.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/campaigns/campaigns.component.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/campaigns/campaigns.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/campaigns/campaigns.module.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/campaigns/campaigns.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/campaigns/campaigns.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/catalog/catalog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/catalog/catalog.component.html -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/catalog/catalog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/catalog/catalog.component.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/catalog/catalog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/catalog/catalog.component.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/catalog/catalog.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/catalog/catalog.module.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/catalog/catalog.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/catalog/catalog.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/orders/orders-detail/orders-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/orders/orders-detail/orders-detail.component.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/orders/orders-new/orders-new.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/orders/orders-new/orders-new.component.html -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/orders/orders-new/orders-new.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/orders/orders-new/orders-new.component.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/orders/orders-new/orders-new.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/orders/orders-new/orders-new.component.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/orders/orders.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/orders/orders.component.html -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/orders/orders.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/orders/orders.component.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/orders/orders.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/orders/orders.component.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/orders/orders.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/orders/orders.module.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/orders/orders.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/orders/orders.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/components/header/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/components/header/header.html -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/components/header/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/components/header/header.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/components/header/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/components/header/header.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/components/identity/identity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/components/identity/identity.html -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/components/identity/identity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/components/identity/identity.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/components/identity/identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/components/identity/identity.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/components/page-not-found/page-not-found.component.html: -------------------------------------------------------------------------------- 1 |

404!

2 | 3 |

Page you are looking for does not exists.

-------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/components/page-not-found/page-not-found.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/components/pager/pager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/components/pager/pager.html -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/components/pager/pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/components/pager/pager.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/components/pager/pager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/components/pager/pager.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/basket.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/models/basket.model.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/basketCheckout.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/models/basketCheckout.model.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/basketItem.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/models/basketItem.model.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/campaign.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/models/campaign.model.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/campaignItem.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/models/campaignItem.model.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/catalog.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/models/catalog.model.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/catalogBrand.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/models/catalogBrand.model.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/catalogItem.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/models/catalogItem.model.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/catalogType.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/models/catalogType.model.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/configuration.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/models/configuration.model.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/coupon.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/models/coupon.model.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/identity.model.ts: -------------------------------------------------------------------------------- 1 | export interface IIdentity { 2 | 3 | } -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/order-detail.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/models/order-detail.model.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/order.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/models/order.model.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/orderItem.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/models/orderItem.model.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/models/pager.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/models/pager.model.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/pipes/uppercase.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/pipes/uppercase.pipe.spec.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/pipes/uppercase.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/pipes/uppercase.pipe.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/services/basket.wrapper.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/services/basket.wrapper.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/services/configuration.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/services/configuration.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/services/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/services/data.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/services/notification.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/services/notification.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/services/security.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/services/security.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/services/signalr.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/services/signalr.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/services/storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/services/storage.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/modules/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/modules/shared/shared.module.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/polyfills.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/styles/_bootstrap-overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/styles/_bootstrap-overrides.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/styles/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/styles/_button.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/styles/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/styles/_form.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/styles/_toastr.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/styles/_toastr.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/styles/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/styles/_utilities.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/styles/_variables.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/styles/globals.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/test.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/src/typings.d.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/tsconfig.json -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/tslint.json -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/typedoc.json -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Client/yarn.lock -------------------------------------------------------------------------------- /src/Web/WebSPA/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Dockerfile -------------------------------------------------------------------------------- /src/Web/WebSPA/Dockerfile.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Dockerfile.acr -------------------------------------------------------------------------------- /src/Web/WebSPA/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Program.cs -------------------------------------------------------------------------------- /src/Web/WebSPA/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Web/WebSPA/Server/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Server/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Web/WebSPA/Server/Infrastructure/WebContextSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Server/Infrastructure/WebContextSeed.cs -------------------------------------------------------------------------------- /src/Web/WebSPA/Setup/images.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Setup/images.zip -------------------------------------------------------------------------------- /src/Web/WebSPA/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/Startup.cs -------------------------------------------------------------------------------- /src/Web/WebSPA/WebSPA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/WebSPA.csproj -------------------------------------------------------------------------------- /src/Web/WebSPA/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/appsettings.json -------------------------------------------------------------------------------- /src/Web/WebSPA/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebSPA/web.config -------------------------------------------------------------------------------- /src/Web/WebStatus/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Web/WebStatus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/Dockerfile -------------------------------------------------------------------------------- /src/Web/WebStatus/Dockerfile.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/Dockerfile.acr -------------------------------------------------------------------------------- /src/Web/WebStatus/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/Program.cs -------------------------------------------------------------------------------- /src/Web/WebStatus/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Web/WebStatus/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/Startup.cs -------------------------------------------------------------------------------- /src/Web/WebStatus/Views/Home/Config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/Views/Home/Config.cshtml -------------------------------------------------------------------------------- /src/Web/WebStatus/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/Web/WebStatus/WebStatus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/WebStatus.csproj -------------------------------------------------------------------------------- /src/Web/WebStatus/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/appsettings.Development.json -------------------------------------------------------------------------------- /src/Web/WebStatus/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/appsettings.json -------------------------------------------------------------------------------- /src/Web/WebStatus/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/bundleconfig.json -------------------------------------------------------------------------------- /src/Web/WebStatus/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/libman.json -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/lib/jquery/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/lib/jquery/core.js -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/lib/jquery/jquery.js -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/lib/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/lib/jquery/jquery.min.map -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/lib/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/lib/jquery/jquery.slim.js -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/lib/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/lib/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/lib/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/src/Web/WebStatus/wwwroot/lib/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /tests/Services/Coupon/Coupon.API.Tests/Controllers/CouponControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/tests/Services/Coupon/Coupon.API.Tests/Controllers/CouponControllerTests.cs -------------------------------------------------------------------------------- /tests/Services/Coupon/Coupon.API.Tests/Coupon.API.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-microservices-devops-aspnet-core/HEAD/tests/Services/Coupon/Coupon.API.Tests/Coupon.API.Tests.csproj --------------------------------------------------------------------------------