├── .dockerignore ├── .gitignore ├── LICENSE ├── MicroservicesApp.sln ├── README.md ├── docker-compose.dcproj ├── docker-compose.override.yml ├── docker-compose.yml └── src ├── ApiGateway └── OcelotAPIGateway │ ├── Dockerfile │ ├── OcelotAPIGateway.csproj │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── ocelot.json ├── Basket └── Basket.API │ ├── Basket.API.csproj │ ├── Controllers │ └── BasketController.cs │ ├── Data │ ├── BasketContext.cs │ └── Interfaces │ │ └── IBasketContext.cs │ ├── Dockerfile │ ├── Entities │ ├── BasketCart.cs │ ├── BasketCartItem.cs │ └── BasketCheckout.cs │ ├── Mapping │ └── BasketMapping.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Repositories │ ├── BasketRepository.cs │ └── Interfaces │ │ └── IBasketRepository.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── Catalog └── Catalog.API │ ├── Catalog.API.csproj │ ├── Controllers │ └── CatalogController.cs │ ├── Data │ ├── CatalogContext.cs │ ├── CatalogContextSeed.cs │ └── Interfaces │ │ └── ICatalogContext.cs │ ├── Dockerfile │ ├── Entities │ └── Product.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Repositories │ ├── Interfaces │ │ └── IProductRepository.cs │ └── ProductRepository.cs │ ├── Settings │ ├── CatalogDatabaseSettings.cs │ └── ICatalogDatabaseSettings.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── Common └── EventBusRabbitMQ │ ├── Common │ └── EventBusConstants.cs │ ├── EventBusRabbitMQ.csproj │ ├── Events │ └── BasketCheckoutEvent.cs │ ├── IRabbitMQConnection.cs │ ├── Producer │ └── EventBusRabbitMQProducer.cs │ └── RabbitMQConnection.cs ├── Ordering ├── Ordering.API │ ├── Controllers │ │ └── OrderController.cs │ ├── Dockerfile │ ├── Extentions │ │ └── ApplicationBuilderExtentions.cs │ ├── Mapping │ │ └── OrderMapping.cs │ ├── Ordering.API.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── RabbitMQ │ │ └── EventBusRabbitMQConsumer.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── Ordering.Application │ ├── Commands │ │ └── CheckoutOrderCommand.cs │ ├── Handlers │ │ ├── CheckoutOrderHandler.cs │ │ └── GetOrderByUserNameHandler.cs │ ├── Mapper │ │ ├── OrderMapper.cs │ │ └── OrderMappingProfile.cs │ ├── Ordering.Application.csproj │ ├── Queries │ │ └── GetOrderByUserNameQuery.cs │ └── Responses │ │ └── OrderResponse.cs ├── Ordering.Core │ ├── Entities │ │ ├── Base │ │ │ ├── Entity.cs │ │ │ ├── EntityBase.cs │ │ │ └── IEntityBase.cs │ │ └── Order.cs │ ├── Ordering.Core.csproj │ └── Repositories │ │ ├── Base │ │ └── IRepository.cs │ │ └── IOrderRepository.cs └── Ordering.Infrastructure │ ├── Data │ ├── OrderContext.cs │ └── OrderContextSeed.cs │ ├── Migrations │ ├── 20200612152054_Initial.Designer.cs │ ├── 20200612152054_Initial.cs │ └── OrderContextModelSnapshot.cs │ ├── Ordering.Infrastructure.csproj │ └── Repositories │ ├── Base │ └── Repository.cs │ └── OrderRepository.cs └── WebApp └── AspnetRunBasics ├── ApiCollection ├── BasketApi.cs ├── CatalogApi.cs ├── Infrastructure │ ├── ApiBuilder.cs │ ├── BaseHttpClientWithFactory.cs │ └── HttpRequestBuilder.cs ├── Interfaces │ ├── IBasketApi.cs │ ├── ICatalogApi.cs │ └── IOrderApi.cs └── OrderApi.cs ├── AspnetRunBasics.csproj ├── Dockerfile ├── Models ├── BasketCheckoutModel.cs ├── BasketItemModel.cs ├── BasketModel.cs ├── CatalogModel.cs └── OrderResponseModel.cs ├── Pages ├── Cart.cshtml ├── Cart.cshtml.cs ├── CheckOut.cshtml ├── CheckOut.cshtml.cs ├── Confirmation.cshtml ├── Confirmation.cshtml.cs ├── Contact.cshtml ├── Contact.cshtml.cs ├── Error.cshtml ├── Error.cshtml.cs ├── Index.cshtml ├── Index.cshtml.cs ├── Order.cshtml ├── Order.cshtml.cs ├── Privacy.cshtml ├── Privacy.cshtml.cs ├── Product.cshtml ├── Product.cshtml.cs ├── ProductDetail.cshtml ├── ProductDetail.cshtml.cs ├── Shared │ ├── _Layout.cshtml │ ├── _ProductItemPartial.cshtml │ ├── _TopProductPartial.cshtml │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── Program.cs ├── Properties └── launchSettings.json ├── Settings ├── ApiSettings.cs └── IApiSettings.cs ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json └── wwwroot ├── css └── style.css ├── favicon.ico └── images ├── banner ├── banner1.png ├── banner2.png └── banner3.png ├── placeholder.png └── product ├── product-1.png ├── product-2.png ├── product-3.png ├── product-4.png ├── product-5.png ├── product-6.png ├── product-7.png ├── productx1.png ├── productx2.png ├── productx3.png ├── productx4.png ├── productx5.png ├── productx6.png └── productx7.png /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/LICENSE -------------------------------------------------------------------------------- /MicroservicesApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/MicroservicesApp.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/docker-compose.dcproj -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /src/ApiGateway/OcelotAPIGateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/ApiGateway/OcelotAPIGateway/Dockerfile -------------------------------------------------------------------------------- /src/ApiGateway/OcelotAPIGateway/OcelotAPIGateway.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/ApiGateway/OcelotAPIGateway/OcelotAPIGateway.csproj -------------------------------------------------------------------------------- /src/ApiGateway/OcelotAPIGateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/ApiGateway/OcelotAPIGateway/Program.cs -------------------------------------------------------------------------------- /src/ApiGateway/OcelotAPIGateway/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/ApiGateway/OcelotAPIGateway/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ApiGateway/OcelotAPIGateway/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/ApiGateway/OcelotAPIGateway/Startup.cs -------------------------------------------------------------------------------- /src/ApiGateway/OcelotAPIGateway/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/ApiGateway/OcelotAPIGateway/appsettings.Development.json -------------------------------------------------------------------------------- /src/ApiGateway/OcelotAPIGateway/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/ApiGateway/OcelotAPIGateway/appsettings.json -------------------------------------------------------------------------------- /src/ApiGateway/OcelotAPIGateway/ocelot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/ApiGateway/OcelotAPIGateway/ocelot.json -------------------------------------------------------------------------------- /src/Basket/Basket.API/Basket.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/Basket.API.csproj -------------------------------------------------------------------------------- /src/Basket/Basket.API/Controllers/BasketController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/Controllers/BasketController.cs -------------------------------------------------------------------------------- /src/Basket/Basket.API/Data/BasketContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/Data/BasketContext.cs -------------------------------------------------------------------------------- /src/Basket/Basket.API/Data/Interfaces/IBasketContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/Data/Interfaces/IBasketContext.cs -------------------------------------------------------------------------------- /src/Basket/Basket.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/Dockerfile -------------------------------------------------------------------------------- /src/Basket/Basket.API/Entities/BasketCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/Entities/BasketCart.cs -------------------------------------------------------------------------------- /src/Basket/Basket.API/Entities/BasketCartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/Entities/BasketCartItem.cs -------------------------------------------------------------------------------- /src/Basket/Basket.API/Entities/BasketCheckout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/Entities/BasketCheckout.cs -------------------------------------------------------------------------------- /src/Basket/Basket.API/Mapping/BasketMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/Mapping/BasketMapping.cs -------------------------------------------------------------------------------- /src/Basket/Basket.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/Program.cs -------------------------------------------------------------------------------- /src/Basket/Basket.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Basket/Basket.API/Repositories/BasketRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/Repositories/BasketRepository.cs -------------------------------------------------------------------------------- /src/Basket/Basket.API/Repositories/Interfaces/IBasketRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/Repositories/Interfaces/IBasketRepository.cs -------------------------------------------------------------------------------- /src/Basket/Basket.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/Startup.cs -------------------------------------------------------------------------------- /src/Basket/Basket.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Basket/Basket.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Basket/Basket.API/appsettings.json -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/Catalog.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/Catalog.API.csproj -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/Controllers/CatalogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/Controllers/CatalogController.cs -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/Data/CatalogContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/Data/CatalogContext.cs -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/Data/CatalogContextSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/Data/CatalogContextSeed.cs -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/Data/Interfaces/ICatalogContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/Data/Interfaces/ICatalogContext.cs -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/Dockerfile -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/Entities/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/Entities/Product.cs -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/Program.cs -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/Repositories/Interfaces/IProductRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/Repositories/Interfaces/IProductRepository.cs -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/Repositories/ProductRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/Repositories/ProductRepository.cs -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/Settings/CatalogDatabaseSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/Settings/CatalogDatabaseSettings.cs -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/Settings/ICatalogDatabaseSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/Settings/ICatalogDatabaseSettings.cs -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/Startup.cs -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Catalog/Catalog.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Catalog/Catalog.API/appsettings.json -------------------------------------------------------------------------------- /src/Common/EventBusRabbitMQ/Common/EventBusConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Common/EventBusRabbitMQ/Common/EventBusConstants.cs -------------------------------------------------------------------------------- /src/Common/EventBusRabbitMQ/EventBusRabbitMQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Common/EventBusRabbitMQ/EventBusRabbitMQ.csproj -------------------------------------------------------------------------------- /src/Common/EventBusRabbitMQ/Events/BasketCheckoutEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Common/EventBusRabbitMQ/Events/BasketCheckoutEvent.cs -------------------------------------------------------------------------------- /src/Common/EventBusRabbitMQ/IRabbitMQConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Common/EventBusRabbitMQ/IRabbitMQConnection.cs -------------------------------------------------------------------------------- /src/Common/EventBusRabbitMQ/Producer/EventBusRabbitMQProducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Common/EventBusRabbitMQ/Producer/EventBusRabbitMQProducer.cs -------------------------------------------------------------------------------- /src/Common/EventBusRabbitMQ/RabbitMQConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Common/EventBusRabbitMQ/RabbitMQConnection.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.API/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.API/Controllers/OrderController.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.API/Dockerfile -------------------------------------------------------------------------------- /src/Ordering/Ordering.API/Extentions/ApplicationBuilderExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.API/Extentions/ApplicationBuilderExtentions.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.API/Mapping/OrderMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.API/Mapping/OrderMapping.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.API/Ordering.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.API/Ordering.API.csproj -------------------------------------------------------------------------------- /src/Ordering/Ordering.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.API/Program.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Ordering/Ordering.API/RabbitMQ/EventBusRabbitMQConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.API/RabbitMQ/EventBusRabbitMQConsumer.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.API/Startup.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Ordering/Ordering.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.API/appsettings.json -------------------------------------------------------------------------------- /src/Ordering/Ordering.Application/Commands/CheckoutOrderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Application/Commands/CheckoutOrderCommand.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Application/Handlers/CheckoutOrderHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Application/Handlers/CheckoutOrderHandler.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Application/Handlers/GetOrderByUserNameHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Application/Handlers/GetOrderByUserNameHandler.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Application/Mapper/OrderMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Application/Mapper/OrderMapper.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Application/Mapper/OrderMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Application/Mapper/OrderMappingProfile.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Application/Ordering.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Application/Ordering.Application.csproj -------------------------------------------------------------------------------- /src/Ordering/Ordering.Application/Queries/GetOrderByUserNameQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Application/Queries/GetOrderByUserNameQuery.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Application/Responses/OrderResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Application/Responses/OrderResponse.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Core/Entities/Base/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Core/Entities/Base/Entity.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Core/Entities/Base/EntityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Core/Entities/Base/EntityBase.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Core/Entities/Base/IEntityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Core/Entities/Base/IEntityBase.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Core/Entities/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Core/Entities/Order.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Core/Ordering.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Core/Ordering.Core.csproj -------------------------------------------------------------------------------- /src/Ordering/Ordering.Core/Repositories/Base/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Core/Repositories/Base/IRepository.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Core/Repositories/IOrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Core/Repositories/IOrderRepository.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Infrastructure/Data/OrderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Infrastructure/Data/OrderContext.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Infrastructure/Data/OrderContextSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Infrastructure/Data/OrderContextSeed.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Infrastructure/Migrations/20200612152054_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Infrastructure/Migrations/20200612152054_Initial.Designer.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Infrastructure/Migrations/20200612152054_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Infrastructure/Migrations/20200612152054_Initial.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Infrastructure/Migrations/OrderContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Infrastructure/Migrations/OrderContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Infrastructure/Ordering.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Infrastructure/Ordering.Infrastructure.csproj -------------------------------------------------------------------------------- /src/Ordering/Ordering.Infrastructure/Repositories/Base/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Infrastructure/Repositories/Base/Repository.cs -------------------------------------------------------------------------------- /src/Ordering/Ordering.Infrastructure/Repositories/OrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/Ordering/Ordering.Infrastructure/Repositories/OrderRepository.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/ApiCollection/BasketApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/ApiCollection/BasketApi.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/ApiCollection/CatalogApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/ApiCollection/CatalogApi.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/ApiCollection/Infrastructure/ApiBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/ApiCollection/Infrastructure/ApiBuilder.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/ApiCollection/Infrastructure/BaseHttpClientWithFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/ApiCollection/Infrastructure/BaseHttpClientWithFactory.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/ApiCollection/Infrastructure/HttpRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/ApiCollection/Infrastructure/HttpRequestBuilder.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/ApiCollection/Interfaces/IBasketApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/ApiCollection/Interfaces/IBasketApi.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/ApiCollection/Interfaces/ICatalogApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/ApiCollection/Interfaces/ICatalogApi.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/ApiCollection/Interfaces/IOrderApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/ApiCollection/Interfaces/IOrderApi.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/ApiCollection/OrderApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/ApiCollection/OrderApi.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/AspnetRunBasics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/AspnetRunBasics.csproj -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Dockerfile -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Models/BasketCheckoutModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Models/BasketCheckoutModel.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Models/BasketItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Models/BasketItemModel.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Models/BasketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Models/BasketModel.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Models/CatalogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Models/CatalogModel.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Models/OrderResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Models/OrderResponseModel.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Cart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Cart.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Cart.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Cart.cshtml.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/CheckOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/CheckOut.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/CheckOut.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/CheckOut.cshtml.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Confirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Confirmation.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Confirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Confirmation.cshtml.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Contact.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Contact.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Contact.cshtml.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Error.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Index.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Order.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Order.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Order.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Order.cshtml.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Product.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Product.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Product.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Product.cshtml.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/ProductDetail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/ProductDetail.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/ProductDetail.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/ProductDetail.cshtml.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Shared/_ProductItemPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Shared/_ProductItemPartial.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Shared/_TopProductPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Shared/_TopProductPartial.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Program.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Settings/ApiSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Settings/ApiSettings.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Settings/IApiSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Settings/IApiSettings.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/Startup.cs -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/appsettings.Development.json -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/appsettings.json -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/css/style.css -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/banner/banner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/banner/banner1.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/banner/banner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/banner/banner2.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/banner/banner3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/banner/banner3.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/placeholder.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/product/product-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/product/product-1.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/product/product-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/product/product-2.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/product/product-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/product/product-3.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/product/product-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/product/product-4.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/product/product-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/product/product-5.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/product/product-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/product/product-6.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/product/product-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/product/product-7.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/product/productx1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/product/productx1.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/product/productx2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/product/productx2.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/product/productx3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/product/productx3.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/product/productx4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/product/productx4.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/product/productx5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/product/productx5.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/product/productx6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/product/productx6.png -------------------------------------------------------------------------------- /src/WebApp/AspnetRunBasics/wwwroot/images/product/productx7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetozkaya/MicroservicesApp/HEAD/src/WebApp/AspnetRunBasics/wwwroot/images/product/productx7.png --------------------------------------------------------------------------------