├── .gitignore ├── CourseSalesMicroservices.sln ├── LICENSE ├── README.md ├── clients └── CourseSales.Web │ ├── Controllers │ ├── AuthController.cs │ ├── BasketController.cs │ ├── CourseController.cs │ ├── HomeController.cs │ ├── OrderController.cs │ └── UserController.cs │ ├── CourseSales.Web.csproj │ ├── Dockerfile │ ├── Exceptions │ └── UnAuthorizeException.cs │ ├── Extensions │ └── ServiceExtension.cs │ ├── GlobalUsigns.cs │ ├── Handlers │ ├── ClientCredentialTokenHandler.cs │ └── ResourceOwnerPasswordTokenHandler.cs │ ├── Helpers │ └── PhotoHelper.cs │ ├── Models │ ├── Baskets │ │ ├── BasketItemViewModel.cs │ │ └── BasketViewModel.cs │ ├── Catalogs │ │ ├── CategoryViewModel.cs │ │ ├── CourseCreateInput.cs │ │ ├── CourseUpdateInput.cs │ │ ├── CourseViewModel.cs │ │ └── FeatureViewModel.cs │ ├── Discounts │ │ ├── DiscountApplyInput.cs │ │ └── DiscountViewModel.cs │ ├── ErrorViewModel.cs │ ├── Orders │ │ ├── AddressCreateInput.cs │ │ ├── CheckoutInfoInput.cs │ │ ├── OrderCreateInput.cs │ │ ├── OrderCreatedViewModel.cs │ │ ├── OrderItemCreateInput.cs │ │ ├── OrderItemViewModel.cs │ │ ├── OrderSuspendViewModel.cs │ │ └── OrderViewModel.cs │ ├── Payments │ │ └── PaymentInfoInput.cs │ ├── PhotoViewModel.cs │ ├── SigninInput.cs │ └── UserViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ ├── Baskets │ │ ├── BasketService.cs │ │ └── IBasketService.cs │ ├── Catalogs │ │ ├── CatalogService.cs │ │ └── ICatalogService.cs │ ├── Clients │ │ ├── ClientCredentialTokenService.cs │ │ └── IClientCredentialTokenService.cs │ ├── Discounts │ │ ├── DiscountService.cs │ │ └── IDiscountService.cs │ ├── Identity │ │ ├── IIdentityService.cs │ │ └── IdentityService.cs │ ├── Orders │ │ ├── IOrderService.cs │ │ └── OrderService.cs │ ├── Payments │ │ ├── IPaymentService.cs │ │ └── PaymentService.cs │ ├── PhotoStocks │ │ ├── IPhotoStockService.cs │ │ └── PhotoStockService.cs │ └── Users │ │ ├── IUserService.cs │ │ └── UserService.cs │ ├── Settings │ ├── ClientSettings.cs │ └── ServiceApiSettings.cs │ ├── Validators │ ├── CourseCreateInputValidator.cs │ ├── CourseUpdateInputValidator.cs │ └── DiscountApplyInputValidator.cs │ ├── Views │ ├── Auth │ │ └── SignIn.cshtml │ ├── Basket │ │ └── Index.cshtml │ ├── Course │ │ ├── Create.cshtml │ │ ├── Index.cshtml │ │ └── Update.cshtml │ ├── Home │ │ ├── Detail.cshtml │ │ └── Index.cshtml │ ├── Order │ │ ├── Checkout.cshtml │ │ ├── CheckoutHistory.cshtml │ │ └── SuccessfulCheckout.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── User │ │ └── Index.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── docker-compose.override.yml ├── docker-compose.yml ├── docs ├── ServicePorts.txt └── database-compose │ ├── docker-compose.override.yml │ └── docker-compose.yml ├── gateways └── CourseSales.Gateway │ ├── CourseSales.Gateway.csproj │ ├── Dockerfile │ ├── GlobalUsings.cs │ ├── Handlers │ └── TokenExchangeDelegateHandler.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── ocelot.Development.SwaggerEndpoint.json │ ├── ocelot.Development.json │ ├── ocelot.Production.SwaggerEndpoint.json │ ├── ocelot.Production.json │ ├── ocelot.global.json │ └── ocelot.json ├── identityserver └── CourseSales.IdentityServer │ ├── Config.cs │ ├── Controllers │ └── UserController.cs │ ├── CourseSales.IdentityServer - Shortcut.lnk │ ├── CourseSales.IdentityServer.csproj │ ├── Data │ └── ApplicationDbContext.cs │ ├── Dockerfile │ ├── Migrations │ ├── 20220212173353_InitialDatabase.Designer.cs │ ├── 20220212173353_InitialDatabase.cs │ ├── 20220212181841_ApplicationUserCity.Designer.cs │ ├── 20220212181841_ApplicationUserCity.cs │ └── ApplicationDbContextModelSnapshot.cs │ ├── Models │ ├── ApplicationUser.cs │ └── SignUpRequestModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Quickstart │ ├── Account │ │ ├── AccountController.cs │ │ ├── AccountOptions.cs │ │ ├── ExternalController.cs │ │ ├── ExternalProvider.cs │ │ ├── LoggedOutViewModel.cs │ │ ├── LoginInputModel.cs │ │ ├── LoginViewModel.cs │ │ ├── LogoutInputModel.cs │ │ ├── LogoutViewModel.cs │ │ └── RedirectViewModel.cs │ ├── Consent │ │ ├── ConsentController.cs │ │ ├── ConsentInputModel.cs │ │ ├── ConsentOptions.cs │ │ ├── ConsentViewModel.cs │ │ ├── ProcessConsentResult.cs │ │ └── ScopeViewModel.cs │ ├── Device │ │ ├── DeviceAuthorizationInputModel.cs │ │ ├── DeviceAuthorizationViewModel.cs │ │ └── DeviceController.cs │ ├── Diagnostics │ │ ├── DiagnosticsController.cs │ │ └── DiagnosticsViewModel.cs │ ├── Extensions.cs │ ├── Grants │ │ ├── GrantsController.cs │ │ └── GrantsViewModel.cs │ ├── Home │ │ ├── ErrorViewModel.cs │ │ └── HomeController.cs │ ├── SecurityHeadersAttribute.cs │ └── TestUsers.cs │ ├── SeedData.cs │ ├── Services │ ├── IdentityResourceOwnerPasswordValidator.cs │ └── TokenExchangeExtensionGrantValidator.cs │ ├── Startup.cs │ ├── Views │ ├── Account │ │ ├── AccessDenied.cshtml │ │ ├── LoggedOut.cshtml │ │ ├── Login.cshtml │ │ └── Logout.cshtml │ ├── Consent │ │ └── Index.cshtml │ ├── Device │ │ ├── Success.cshtml │ │ ├── UserCodeCapture.cshtml │ │ └── UserCodeConfirmation.cshtml │ ├── Diagnostics │ │ └── Index.cshtml │ ├── Grants │ │ └── Index.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── Redirect.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Nav.cshtml │ │ ├── _ScopeListItem.cshtml │ │ └── _ValidationSummary.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.json │ ├── tempkey.jwk │ ├── updateUI.ps1 │ └── wwwroot │ ├── css │ ├── site.css │ ├── site.min.css │ └── site.scss │ ├── favicon.ico │ ├── icon.jpg │ ├── icon.png │ ├── js │ ├── signin-redirect.js │ └── signout-redirect.js │ └── lib │ ├── bootstrap │ ├── README.md │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ └── scss │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins │ │ ├── _alert.scss │ │ ├── _background-variant.scss │ │ ├── _badge.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.scss │ │ ├── _deprecate.scss │ │ ├── _float.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hover.scss │ │ ├── _image.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _nav-divider.scss │ │ ├── _pagination.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _screen-reader.scss │ │ ├── _size.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-hide.scss │ │ ├── _text-truncate.scss │ │ ├── _transition.scss │ │ └── _visibility.scss │ │ ├── utilities │ │ ├── _align.scss │ │ ├── _background.scss │ │ ├── _borders.scss │ │ ├── _clearfix.scss │ │ ├── _display.scss │ │ ├── _embed.scss │ │ ├── _flex.scss │ │ ├── _float.scss │ │ ├── _overflow.scss │ │ ├── _position.scss │ │ ├── _screenreaders.scss │ │ ├── _shadows.scss │ │ ├── _sizing.scss │ │ ├── _spacing.scss │ │ ├── _stretched-link.scss │ │ ├── _text.scss │ │ └── _visibility.scss │ │ └── vendor │ │ └── _rfs.scss │ └── jquery │ ├── LICENSE.txt │ ├── README.md │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.slim.js │ ├── jquery.slim.min.js │ └── jquery.slim.min.map ├── serviceports.txt ├── services ├── basket │ └── CourseSales.Services.Basket │ │ ├── Consumers │ │ └── CourseNameChangedEventConsumer.cs │ │ ├── Controllers │ │ └── BasketsController.cs │ │ ├── CourseSales.Services.Basket.csproj │ │ ├── Dockerfile │ │ ├── GlobalUsings.cs │ │ ├── Models │ │ └── Basket │ │ │ └── BasketModel.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Services │ │ ├── BasketService.cs │ │ └── RedisService.cs │ │ ├── Settings │ │ └── RedisSetting.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── catalog │ └── CourseSales.Services.Catalog │ │ ├── Controllers │ │ ├── CategoriesController.cs │ │ └── CoursesController.cs │ │ ├── CourseSales.Services.Catalog.csproj │ │ ├── Data │ │ └── MongoContext.cs │ │ ├── Dockerfile │ │ ├── Entities │ │ ├── BaseEntity.cs │ │ ├── Category.cs │ │ ├── Course.cs │ │ └── Feature.cs │ │ ├── GlobalUsings.cs │ │ ├── Mapping │ │ └── MapProfile.cs │ │ ├── Models │ │ ├── Request │ │ │ ├── AddCategoryRequestModel.cs │ │ │ ├── AddCourseRequstModel.cs │ │ │ ├── FeatureRequestModel.cs │ │ │ └── UpdateCourseRequestModel.cs │ │ └── Response │ │ │ ├── CategoryResponseModel.cs │ │ │ ├── CourseResponseModel.cs │ │ │ └── FeatureResponseModel.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Services │ │ ├── CategoryService.cs │ │ └── CourseService.cs │ │ ├── Settings │ │ └── DatabaseSetting.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── discount │ └── CourseSales.Services.Discount │ │ ├── Controllers │ │ └── DiscountsController.cs │ │ ├── CourseSales.Services.Discount.csproj │ │ ├── Dockerfile │ │ ├── Entities │ │ └── Discount.cs │ │ ├── GlobalUsings.cs │ │ ├── Models │ │ ├── DiscountRequestModel.cs │ │ └── DiscountResponseModel.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Services │ │ ├── DiscountService.cs │ │ └── IDiscountService.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── order │ ├── CourseSales.Services.Order.API │ │ ├── Controllers │ │ │ └── OrdersController.cs │ │ ├── CourseSales.Services.Order.API.csproj │ │ ├── Dockerfile │ │ ├── GlobalUsings.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── CourseSales.Services.Order.Application │ │ ├── Commands │ │ │ └── CreateOrderCommand.cs │ │ ├── Consumers │ │ │ ├── CourseNameChangedEventConsumer.cs │ │ │ └── CreateOrderMessageCommandConsumer.cs │ │ ├── CourseSales.Services.Order.Application.csproj │ │ ├── Dtos │ │ │ ├── AddressDto.cs │ │ │ ├── CreatedOrderDto.cs │ │ │ ├── OrderDto.cs │ │ │ └── OrderItemDto.cs │ │ ├── GlobalUsings.cs │ │ ├── Handlers │ │ │ ├── CreateOrderCommandHandler.cs │ │ │ └── GetOrdersByUserIdQueryHandler.cs │ │ ├── Mapping │ │ │ ├── CustomMapping.cs │ │ │ └── ObjectMapper.cs │ │ └── Queries │ │ │ └── GetOrdersByUserIdQuery.cs │ ├── CourseSales.Services.Order.Domain │ │ ├── Base │ │ │ ├── Entity.cs │ │ │ ├── IAggregateRoot.cs │ │ │ └── ValueObject.cs │ │ ├── CourseSales.Services.Order.Domain.csproj │ │ ├── GlobalUsings.cs │ │ └── OrderAggregate │ │ │ ├── Address.cs │ │ │ ├── Order.cs │ │ │ └── OrderItem.cs │ └── CourseSales.Services.Order.Infrastructure │ │ ├── CourseSales.Services.Order.Infrastructure.csproj │ │ ├── GlobalUsings.cs │ │ ├── Migrations │ │ ├── 20220220134449_Initial.Designer.cs │ │ ├── 20220220134449_Initial.cs │ │ └── OrderDbContextModelSnapshot.cs │ │ └── OrderDbContext.cs ├── payment │ └── CourseSales.Services.Payment │ │ ├── Controllers │ │ └── PaymentsController.cs │ │ ├── CourseSales.Services.Payment.csproj │ │ ├── Dockerfile │ │ ├── GlobalUsigns.cs │ │ ├── Models │ │ ├── OrderRequestModel.cs │ │ └── PaymentRequestModel.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ └── appsettings.json └── photostock │ └── CourseSales.Services.PhotoStock │ ├── Controllers │ └── PhotosController.cs │ ├── CourseSales.Services.PhotoStock.csproj │ ├── Dockerfile │ ├── GlobalUsings.cs │ ├── Models │ └── PhotoResponseModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ └── photos │ ├── 57b9edbd-2017-4d5e-88a4-b81de20d431c.png │ ├── c68cbe7e-00f4-4b31-8893-a4efe201c06c.png │ ├── d0207ccf-50e0-409b-b44f-dd0bde3b2e4a.png │ ├── e2f5e050-c7ba-40cc-8e12-388f6af1cbef.png │ └── ec9aa5c5-249d-426b-a524-fe3b992d72f0.jfif └── shared └── CourseSales.Shared ├── Controllers └── BaseApiController.cs ├── CourseSales.Shared.csproj ├── DataTransferObjects ├── ErrorResponse.cs ├── NoContentResponse.cs └── Response.cs ├── GlobalUsings.cs ├── Messages ├── Commands │ └── CreateOrderMessageCommand.cs └── Events │ └── CourseNameChangedEvent.cs └── Services └── SharedIdentityService.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/.gitignore -------------------------------------------------------------------------------- /CourseSalesMicroservices.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/CourseSalesMicroservices.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/README.md -------------------------------------------------------------------------------- /clients/CourseSales.Web/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Controllers/AuthController.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Controllers/BasketController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Controllers/BasketController.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Controllers/CourseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Controllers/CourseController.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Controllers/OrderController.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Controllers/UserController.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/CourseSales.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/CourseSales.Web.csproj -------------------------------------------------------------------------------- /clients/CourseSales.Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Dockerfile -------------------------------------------------------------------------------- /clients/CourseSales.Web/Exceptions/UnAuthorizeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Exceptions/UnAuthorizeException.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Extensions/ServiceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Extensions/ServiceExtension.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/GlobalUsigns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/GlobalUsigns.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Handlers/ClientCredentialTokenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Handlers/ClientCredentialTokenHandler.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Handlers/ResourceOwnerPasswordTokenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Handlers/ResourceOwnerPasswordTokenHandler.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Helpers/PhotoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Helpers/PhotoHelper.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Baskets/BasketItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Baskets/BasketItemViewModel.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Baskets/BasketViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Baskets/BasketViewModel.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Catalogs/CategoryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Catalogs/CategoryViewModel.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Catalogs/CourseCreateInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Catalogs/CourseCreateInput.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Catalogs/CourseUpdateInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Catalogs/CourseUpdateInput.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Catalogs/CourseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Catalogs/CourseViewModel.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Catalogs/FeatureViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Catalogs/FeatureViewModel.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Discounts/DiscountApplyInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Discounts/DiscountApplyInput.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Discounts/DiscountViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Discounts/DiscountViewModel.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Orders/AddressCreateInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Orders/AddressCreateInput.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Orders/CheckoutInfoInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Orders/CheckoutInfoInput.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Orders/OrderCreateInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Orders/OrderCreateInput.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Orders/OrderCreatedViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Orders/OrderCreatedViewModel.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Orders/OrderItemCreateInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Orders/OrderItemCreateInput.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Orders/OrderItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Orders/OrderItemViewModel.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Orders/OrderSuspendViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Orders/OrderSuspendViewModel.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Orders/OrderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Orders/OrderViewModel.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/Payments/PaymentInfoInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/Payments/PaymentInfoInput.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/PhotoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/PhotoViewModel.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/SigninInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/SigninInput.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Models/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Models/UserViewModel.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Program.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Baskets/BasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Baskets/BasketService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Baskets/IBasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Baskets/IBasketService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Catalogs/CatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Catalogs/CatalogService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Catalogs/ICatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Catalogs/ICatalogService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Clients/ClientCredentialTokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Clients/ClientCredentialTokenService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Clients/IClientCredentialTokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Clients/IClientCredentialTokenService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Discounts/DiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Discounts/DiscountService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Discounts/IDiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Discounts/IDiscountService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Identity/IIdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Identity/IIdentityService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Identity/IdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Identity/IdentityService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Orders/IOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Orders/IOrderService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Orders/OrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Orders/OrderService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Payments/IPaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Payments/IPaymentService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Payments/PaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Payments/PaymentService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/PhotoStocks/IPhotoStockService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/PhotoStocks/IPhotoStockService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/PhotoStocks/PhotoStockService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/PhotoStocks/PhotoStockService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Users/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Users/IUserService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Services/Users/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Services/Users/UserService.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Settings/ClientSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Settings/ClientSettings.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Settings/ServiceApiSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Settings/ServiceApiSettings.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Validators/CourseCreateInputValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Validators/CourseCreateInputValidator.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Validators/CourseUpdateInputValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Validators/CourseUpdateInputValidator.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Validators/DiscountApplyInputValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Validators/DiscountApplyInputValidator.cs -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/Auth/SignIn.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/Auth/SignIn.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/Basket/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/Basket/Index.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/Course/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/Course/Create.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/Course/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/Course/Index.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/Course/Update.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/Course/Update.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/Home/Detail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/Home/Detail.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/Order/Checkout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/Order/Checkout.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/Order/CheckoutHistory.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/Order/CheckoutHistory.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/Order/SuccessfulCheckout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/Order/SuccessfulCheckout.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/User/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/User/Index.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /clients/CourseSales.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/appsettings.Development.json -------------------------------------------------------------------------------- /clients/CourseSales.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/appsettings.json -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/js/site.js -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /clients/CourseSales.Web/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/clients/CourseSales.Web/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/ServicePorts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/docs/ServicePorts.txt -------------------------------------------------------------------------------- /docs/database-compose/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/docs/database-compose/docker-compose.override.yml -------------------------------------------------------------------------------- /docs/database-compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/docs/database-compose/docker-compose.yml -------------------------------------------------------------------------------- /gateways/CourseSales.Gateway/CourseSales.Gateway.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/gateways/CourseSales.Gateway/CourseSales.Gateway.csproj -------------------------------------------------------------------------------- /gateways/CourseSales.Gateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/gateways/CourseSales.Gateway/Dockerfile -------------------------------------------------------------------------------- /gateways/CourseSales.Gateway/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/gateways/CourseSales.Gateway/GlobalUsings.cs -------------------------------------------------------------------------------- /gateways/CourseSales.Gateway/Handlers/TokenExchangeDelegateHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/gateways/CourseSales.Gateway/Handlers/TokenExchangeDelegateHandler.cs -------------------------------------------------------------------------------- /gateways/CourseSales.Gateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/gateways/CourseSales.Gateway/Program.cs -------------------------------------------------------------------------------- /gateways/CourseSales.Gateway/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/gateways/CourseSales.Gateway/Properties/launchSettings.json -------------------------------------------------------------------------------- /gateways/CourseSales.Gateway/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/gateways/CourseSales.Gateway/appsettings.Development.json -------------------------------------------------------------------------------- /gateways/CourseSales.Gateway/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/gateways/CourseSales.Gateway/appsettings.json -------------------------------------------------------------------------------- /gateways/CourseSales.Gateway/ocelot.Development.SwaggerEndpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/gateways/CourseSales.Gateway/ocelot.Development.SwaggerEndpoint.json -------------------------------------------------------------------------------- /gateways/CourseSales.Gateway/ocelot.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/gateways/CourseSales.Gateway/ocelot.Development.json -------------------------------------------------------------------------------- /gateways/CourseSales.Gateway/ocelot.Production.SwaggerEndpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/gateways/CourseSales.Gateway/ocelot.Production.SwaggerEndpoint.json -------------------------------------------------------------------------------- /gateways/CourseSales.Gateway/ocelot.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/gateways/CourseSales.Gateway/ocelot.Production.json -------------------------------------------------------------------------------- /gateways/CourseSales.Gateway/ocelot.global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/gateways/CourseSales.Gateway/ocelot.global.json -------------------------------------------------------------------------------- /gateways/CourseSales.Gateway/ocelot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/gateways/CourseSales.Gateway/ocelot.json -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Config.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Controllers/UserController.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/CourseSales.IdentityServer - Shortcut.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/CourseSales.IdentityServer - Shortcut.lnk -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/CourseSales.IdentityServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/CourseSales.IdentityServer.csproj -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Dockerfile -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Migrations/20220212173353_InitialDatabase.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Migrations/20220212173353_InitialDatabase.Designer.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Migrations/20220212173353_InitialDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Migrations/20220212173353_InitialDatabase.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Migrations/20220212181841_ApplicationUserCity.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Migrations/20220212181841_ApplicationUserCity.Designer.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Migrations/20220212181841_ApplicationUserCity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Migrations/20220212181841_ApplicationUserCity.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Models/SignUpRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Models/SignUpRequestModel.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Program.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Account/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Account/AccountController.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Account/AccountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Account/AccountOptions.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Account/ExternalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Account/ExternalController.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Account/ExternalProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Account/ExternalProvider.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Account/LoggedOutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Account/LoggedOutViewModel.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Account/LoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Account/LoginInputModel.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Account/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Account/LoginViewModel.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Account/LogoutInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Account/LogoutInputModel.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Account/LogoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Account/LogoutViewModel.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Account/RedirectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Account/RedirectViewModel.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Consent/ConsentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Consent/ConsentController.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Consent/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Consent/ConsentInputModel.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Consent/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Consent/ConsentOptions.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Consent/ConsentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Consent/ConsentViewModel.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Consent/ProcessConsentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Consent/ProcessConsentResult.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Consent/ScopeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Consent/ScopeViewModel.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Device/DeviceAuthorizationInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Device/DeviceAuthorizationInputModel.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Device/DeviceAuthorizationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Device/DeviceAuthorizationViewModel.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Device/DeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Device/DeviceController.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Diagnostics/DiagnosticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Diagnostics/DiagnosticsController.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Diagnostics/DiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Diagnostics/DiagnosticsViewModel.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Extensions.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Grants/GrantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Grants/GrantsController.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Grants/GrantsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Grants/GrantsViewModel.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Home/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Home/ErrorViewModel.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/Home/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/Home/HomeController.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Quickstart/TestUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Quickstart/TestUsers.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/SeedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/SeedData.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Services/IdentityResourceOwnerPasswordValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Services/IdentityResourceOwnerPasswordValidator.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Services/TokenExchangeExtensionGrantValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Services/TokenExchangeExtensionGrantValidator.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Startup.cs -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Account/Logout.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Consent/Index.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Device/Success.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Device/Success.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Device/UserCodeCapture.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Device/UserCodeCapture.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Device/UserCodeConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Device/UserCodeConfirmation.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Diagnostics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Diagnostics/Index.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Grants/Index.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Shared/Redirect.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Shared/Redirect.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Shared/_Nav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Shared/_Nav.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Shared/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Shared/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/Shared/_ValidationSummary.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/appsettings.json -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/tempkey.jwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/tempkey.jwk -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/updateUI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/updateUI.ps1 -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/css/site.css -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/css/site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/css/site.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/favicon.ico -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/icon.jpg -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/icon.png -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/js/signin-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/js/signin-redirect.js -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/js/signout-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/js/signout-redirect.js -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_custom-forms.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_input-group.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_jumbotron.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_media.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_print.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/bootstrap-reboot.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_background-variant.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_badge.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_border-radius.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_buttons.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_clearfix.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_deprecate.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_float.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_gradients.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_hover.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_list-group.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_pagination.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_reset-text.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_screen-reader.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_size.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_table-row.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_text-hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_text-hide.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_transition.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_visibility.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_align.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_background.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_borders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_borders.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_clearfix.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_display.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_embed.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_flex.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_float.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_overflow.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_position.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_screenreaders.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_shadows.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_sizing.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_spacing.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_stretched-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_stretched-link.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_text.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_visibility.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/bootstrap/scss/vendor/_rfs.scss -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/identityserver/CourseSales.IdentityServer/wwwroot/lib/jquery/dist/jquery.slim.min.map -------------------------------------------------------------------------------- /serviceports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/serviceports.txt -------------------------------------------------------------------------------- /services/basket/CourseSales.Services.Basket/Consumers/CourseNameChangedEventConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/basket/CourseSales.Services.Basket/Consumers/CourseNameChangedEventConsumer.cs -------------------------------------------------------------------------------- /services/basket/CourseSales.Services.Basket/Controllers/BasketsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/basket/CourseSales.Services.Basket/Controllers/BasketsController.cs -------------------------------------------------------------------------------- /services/basket/CourseSales.Services.Basket/CourseSales.Services.Basket.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/basket/CourseSales.Services.Basket/CourseSales.Services.Basket.csproj -------------------------------------------------------------------------------- /services/basket/CourseSales.Services.Basket/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/basket/CourseSales.Services.Basket/Dockerfile -------------------------------------------------------------------------------- /services/basket/CourseSales.Services.Basket/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/basket/CourseSales.Services.Basket/GlobalUsings.cs -------------------------------------------------------------------------------- /services/basket/CourseSales.Services.Basket/Models/Basket/BasketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/basket/CourseSales.Services.Basket/Models/Basket/BasketModel.cs -------------------------------------------------------------------------------- /services/basket/CourseSales.Services.Basket/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/basket/CourseSales.Services.Basket/Program.cs -------------------------------------------------------------------------------- /services/basket/CourseSales.Services.Basket/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/basket/CourseSales.Services.Basket/Properties/launchSettings.json -------------------------------------------------------------------------------- /services/basket/CourseSales.Services.Basket/Services/BasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/basket/CourseSales.Services.Basket/Services/BasketService.cs -------------------------------------------------------------------------------- /services/basket/CourseSales.Services.Basket/Services/RedisService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/basket/CourseSales.Services.Basket/Services/RedisService.cs -------------------------------------------------------------------------------- /services/basket/CourseSales.Services.Basket/Settings/RedisSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/basket/CourseSales.Services.Basket/Settings/RedisSetting.cs -------------------------------------------------------------------------------- /services/basket/CourseSales.Services.Basket/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/basket/CourseSales.Services.Basket/appsettings.Development.json -------------------------------------------------------------------------------- /services/basket/CourseSales.Services.Basket/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/basket/CourseSales.Services.Basket/appsettings.json -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Controllers/CategoriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Controllers/CategoriesController.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Controllers/CoursesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Controllers/CoursesController.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/CourseSales.Services.Catalog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/CourseSales.Services.Catalog.csproj -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Data/MongoContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Data/MongoContext.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Dockerfile -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Entities/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Entities/BaseEntity.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Entities/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Entities/Category.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Entities/Course.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Entities/Course.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Entities/Feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Entities/Feature.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/GlobalUsings.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Mapping/MapProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Mapping/MapProfile.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Models/Request/AddCategoryRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Models/Request/AddCategoryRequestModel.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Models/Request/AddCourseRequstModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Models/Request/AddCourseRequstModel.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Models/Request/FeatureRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Models/Request/FeatureRequestModel.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Models/Request/UpdateCourseRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Models/Request/UpdateCourseRequestModel.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Models/Response/CategoryResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Models/Response/CategoryResponseModel.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Models/Response/CourseResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Models/Response/CourseResponseModel.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Models/Response/FeatureResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Models/Response/FeatureResponseModel.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Program.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Properties/launchSettings.json -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Services/CategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Services/CategoryService.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Services/CourseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Services/CourseService.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/Settings/DatabaseSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/Settings/DatabaseSetting.cs -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/appsettings.Development.json -------------------------------------------------------------------------------- /services/catalog/CourseSales.Services.Catalog/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/catalog/CourseSales.Services.Catalog/appsettings.json -------------------------------------------------------------------------------- /services/discount/CourseSales.Services.Discount/Controllers/DiscountsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/discount/CourseSales.Services.Discount/Controllers/DiscountsController.cs -------------------------------------------------------------------------------- /services/discount/CourseSales.Services.Discount/CourseSales.Services.Discount.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/discount/CourseSales.Services.Discount/CourseSales.Services.Discount.csproj -------------------------------------------------------------------------------- /services/discount/CourseSales.Services.Discount/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/discount/CourseSales.Services.Discount/Dockerfile -------------------------------------------------------------------------------- /services/discount/CourseSales.Services.Discount/Entities/Discount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/discount/CourseSales.Services.Discount/Entities/Discount.cs -------------------------------------------------------------------------------- /services/discount/CourseSales.Services.Discount/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/discount/CourseSales.Services.Discount/GlobalUsings.cs -------------------------------------------------------------------------------- /services/discount/CourseSales.Services.Discount/Models/DiscountRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/discount/CourseSales.Services.Discount/Models/DiscountRequestModel.cs -------------------------------------------------------------------------------- /services/discount/CourseSales.Services.Discount/Models/DiscountResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/discount/CourseSales.Services.Discount/Models/DiscountResponseModel.cs -------------------------------------------------------------------------------- /services/discount/CourseSales.Services.Discount/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/discount/CourseSales.Services.Discount/Program.cs -------------------------------------------------------------------------------- /services/discount/CourseSales.Services.Discount/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/discount/CourseSales.Services.Discount/Properties/launchSettings.json -------------------------------------------------------------------------------- /services/discount/CourseSales.Services.Discount/Services/DiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/discount/CourseSales.Services.Discount/Services/DiscountService.cs -------------------------------------------------------------------------------- /services/discount/CourseSales.Services.Discount/Services/IDiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/discount/CourseSales.Services.Discount/Services/IDiscountService.cs -------------------------------------------------------------------------------- /services/discount/CourseSales.Services.Discount/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/discount/CourseSales.Services.Discount/appsettings.Development.json -------------------------------------------------------------------------------- /services/discount/CourseSales.Services.Discount/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/discount/CourseSales.Services.Discount/appsettings.json -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.API/Controllers/OrdersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.API/Controllers/OrdersController.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.API/CourseSales.Services.Order.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.API/CourseSales.Services.Order.API.csproj -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.API/Dockerfile -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.API/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.API/GlobalUsings.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.API/Program.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.API/appsettings.Development.json -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.API/appsettings.json -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Application/Commands/CreateOrderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Application/Commands/CreateOrderCommand.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Application/Consumers/CourseNameChangedEventConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Application/Consumers/CourseNameChangedEventConsumer.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Application/Consumers/CreateOrderMessageCommandConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Application/Consumers/CreateOrderMessageCommandConsumer.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Application/CourseSales.Services.Order.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Application/CourseSales.Services.Order.Application.csproj -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Application/Dtos/AddressDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Application/Dtos/AddressDto.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Application/Dtos/CreatedOrderDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Application/Dtos/CreatedOrderDto.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Application/Dtos/OrderDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Application/Dtos/OrderDto.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Application/Dtos/OrderItemDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Application/Dtos/OrderItemDto.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Application/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Application/GlobalUsings.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Application/Handlers/CreateOrderCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Application/Handlers/CreateOrderCommandHandler.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Application/Handlers/GetOrdersByUserIdQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Application/Handlers/GetOrdersByUserIdQueryHandler.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Application/Mapping/CustomMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Application/Mapping/CustomMapping.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Application/Mapping/ObjectMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Application/Mapping/ObjectMapper.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Application/Queries/GetOrdersByUserIdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Application/Queries/GetOrdersByUserIdQuery.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Domain/Base/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Domain/Base/Entity.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Domain/Base/IAggregateRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Domain/Base/IAggregateRoot.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Domain/Base/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Domain/Base/ValueObject.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Domain/CourseSales.Services.Order.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Domain/CourseSales.Services.Order.Domain.csproj -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Domain/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using CourseSales.Services.Order.Domain.Base; -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Domain/OrderAggregate/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Domain/OrderAggregate/Address.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Domain/OrderAggregate/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Domain/OrderAggregate/Order.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Domain/OrderAggregate/OrderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Domain/OrderAggregate/OrderItem.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Infrastructure/CourseSales.Services.Order.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Infrastructure/CourseSales.Services.Order.Infrastructure.csproj -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Infrastructure/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Infrastructure/GlobalUsings.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Infrastructure/Migrations/20220220134449_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Infrastructure/Migrations/20220220134449_Initial.Designer.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Infrastructure/Migrations/20220220134449_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Infrastructure/Migrations/20220220134449_Initial.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Infrastructure/Migrations/OrderDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Infrastructure/Migrations/OrderDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /services/order/CourseSales.Services.Order.Infrastructure/OrderDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/order/CourseSales.Services.Order.Infrastructure/OrderDbContext.cs -------------------------------------------------------------------------------- /services/payment/CourseSales.Services.Payment/Controllers/PaymentsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/payment/CourseSales.Services.Payment/Controllers/PaymentsController.cs -------------------------------------------------------------------------------- /services/payment/CourseSales.Services.Payment/CourseSales.Services.Payment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/payment/CourseSales.Services.Payment/CourseSales.Services.Payment.csproj -------------------------------------------------------------------------------- /services/payment/CourseSales.Services.Payment/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/payment/CourseSales.Services.Payment/Dockerfile -------------------------------------------------------------------------------- /services/payment/CourseSales.Services.Payment/GlobalUsigns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/payment/CourseSales.Services.Payment/GlobalUsigns.cs -------------------------------------------------------------------------------- /services/payment/CourseSales.Services.Payment/Models/OrderRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/payment/CourseSales.Services.Payment/Models/OrderRequestModel.cs -------------------------------------------------------------------------------- /services/payment/CourseSales.Services.Payment/Models/PaymentRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/payment/CourseSales.Services.Payment/Models/PaymentRequestModel.cs -------------------------------------------------------------------------------- /services/payment/CourseSales.Services.Payment/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/payment/CourseSales.Services.Payment/Program.cs -------------------------------------------------------------------------------- /services/payment/CourseSales.Services.Payment/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/payment/CourseSales.Services.Payment/Properties/launchSettings.json -------------------------------------------------------------------------------- /services/payment/CourseSales.Services.Payment/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/payment/CourseSales.Services.Payment/appsettings.Development.json -------------------------------------------------------------------------------- /services/payment/CourseSales.Services.Payment/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/payment/CourseSales.Services.Payment/appsettings.json -------------------------------------------------------------------------------- /services/photostock/CourseSales.Services.PhotoStock/Controllers/PhotosController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/photostock/CourseSales.Services.PhotoStock/Controllers/PhotosController.cs -------------------------------------------------------------------------------- /services/photostock/CourseSales.Services.PhotoStock/CourseSales.Services.PhotoStock.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/photostock/CourseSales.Services.PhotoStock/CourseSales.Services.PhotoStock.csproj -------------------------------------------------------------------------------- /services/photostock/CourseSales.Services.PhotoStock/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/photostock/CourseSales.Services.PhotoStock/Dockerfile -------------------------------------------------------------------------------- /services/photostock/CourseSales.Services.PhotoStock/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/photostock/CourseSales.Services.PhotoStock/GlobalUsings.cs -------------------------------------------------------------------------------- /services/photostock/CourseSales.Services.PhotoStock/Models/PhotoResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/photostock/CourseSales.Services.PhotoStock/Models/PhotoResponseModel.cs -------------------------------------------------------------------------------- /services/photostock/CourseSales.Services.PhotoStock/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/photostock/CourseSales.Services.PhotoStock/Program.cs -------------------------------------------------------------------------------- /services/photostock/CourseSales.Services.PhotoStock/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/photostock/CourseSales.Services.PhotoStock/Properties/launchSettings.json -------------------------------------------------------------------------------- /services/photostock/CourseSales.Services.PhotoStock/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/photostock/CourseSales.Services.PhotoStock/appsettings.Development.json -------------------------------------------------------------------------------- /services/photostock/CourseSales.Services.PhotoStock/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/photostock/CourseSales.Services.PhotoStock/appsettings.json -------------------------------------------------------------------------------- /services/photostock/CourseSales.Services.PhotoStock/wwwroot/photos/57b9edbd-2017-4d5e-88a4-b81de20d431c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/photostock/CourseSales.Services.PhotoStock/wwwroot/photos/57b9edbd-2017-4d5e-88a4-b81de20d431c.png -------------------------------------------------------------------------------- /services/photostock/CourseSales.Services.PhotoStock/wwwroot/photos/c68cbe7e-00f4-4b31-8893-a4efe201c06c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/photostock/CourseSales.Services.PhotoStock/wwwroot/photos/c68cbe7e-00f4-4b31-8893-a4efe201c06c.png -------------------------------------------------------------------------------- /services/photostock/CourseSales.Services.PhotoStock/wwwroot/photos/d0207ccf-50e0-409b-b44f-dd0bde3b2e4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/photostock/CourseSales.Services.PhotoStock/wwwroot/photos/d0207ccf-50e0-409b-b44f-dd0bde3b2e4a.png -------------------------------------------------------------------------------- /services/photostock/CourseSales.Services.PhotoStock/wwwroot/photos/e2f5e050-c7ba-40cc-8e12-388f6af1cbef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/photostock/CourseSales.Services.PhotoStock/wwwroot/photos/e2f5e050-c7ba-40cc-8e12-388f6af1cbef.png -------------------------------------------------------------------------------- /services/photostock/CourseSales.Services.PhotoStock/wwwroot/photos/ec9aa5c5-249d-426b-a524-fe3b992d72f0.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/services/photostock/CourseSales.Services.PhotoStock/wwwroot/photos/ec9aa5c5-249d-426b-a524-fe3b992d72f0.jfif -------------------------------------------------------------------------------- /shared/CourseSales.Shared/Controllers/BaseApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/shared/CourseSales.Shared/Controllers/BaseApiController.cs -------------------------------------------------------------------------------- /shared/CourseSales.Shared/CourseSales.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/shared/CourseSales.Shared/CourseSales.Shared.csproj -------------------------------------------------------------------------------- /shared/CourseSales.Shared/DataTransferObjects/ErrorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/shared/CourseSales.Shared/DataTransferObjects/ErrorResponse.cs -------------------------------------------------------------------------------- /shared/CourseSales.Shared/DataTransferObjects/NoContentResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/shared/CourseSales.Shared/DataTransferObjects/NoContentResponse.cs -------------------------------------------------------------------------------- /shared/CourseSales.Shared/DataTransferObjects/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/shared/CourseSales.Shared/DataTransferObjects/Response.cs -------------------------------------------------------------------------------- /shared/CourseSales.Shared/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/shared/CourseSales.Shared/GlobalUsings.cs -------------------------------------------------------------------------------- /shared/CourseSales.Shared/Messages/Commands/CreateOrderMessageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/shared/CourseSales.Shared/Messages/Commands/CreateOrderMessageCommand.cs -------------------------------------------------------------------------------- /shared/CourseSales.Shared/Messages/Events/CourseNameChangedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/shared/CourseSales.Shared/Messages/Events/CourseNameChangedEvent.cs -------------------------------------------------------------------------------- /shared/CourseSales.Shared/Services/SharedIdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cihatsolak/net7-ecommerce-microservice/HEAD/shared/CourseSales.Shared/Services/SharedIdentityService.cs --------------------------------------------------------------------------------