├── .gitignore ├── KodotiCommerce.sln ├── README.md ├── clear.bat └── src ├── Clients ├── Clients.Authentication │ ├── Clients.Authentication.csproj │ ├── Clients.Authentication.csproj.user │ ├── Models │ │ ├── IdentityAccess.cs │ │ └── LoginViewModel.cs │ ├── Pages │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Startup.cs │ ├── 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-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ │ ├── LICENSE.txt │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ └── logo.png └── Clients.WebClient │ ├── Clients.WebClient.csproj │ ├── Clients.WebClient.csproj.user │ ├── Controllers │ └── AccountController.cs │ ├── Models │ └── AccessTokenUserInformation.cs │ ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Orders │ │ ├── Create.cshtml │ │ ├── Create.cshtml.cs │ │ ├── Detail.cshtml │ │ ├── Detail.cshtml.cs │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Proxies │ ├── Api.Gateway.Models.dll │ └── Api.Gateway.WebClient.Proxy.dll │ ├── Startup.cs │ ├── 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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ └── logo.png ├── Common └── Common.Logging │ ├── Common.Logging.csproj │ └── SysLogger.cs ├── Gateways ├── Api.Gateway.Models │ ├── Api.Gateway.Models.csproj │ ├── Catalog │ │ └── DTOs │ │ │ └── ProductDto.cs │ ├── Customer │ │ └── DTOs │ │ │ └── ClientDto.cs │ ├── DataCollection.cs │ └── Order │ │ ├── Commands │ │ └── OrderCreateCommand.cs │ │ ├── Commons │ │ └── Enums.cs │ │ └── DTOs │ │ └── OrderDto.cs ├── Api.Gateway.Proxies │ ├── Api.Gateway.Proxies.csproj │ ├── ApiUrls.cs │ ├── CatalogProxy.cs │ ├── Config │ │ └── HttpClientTokenExtension.cs │ ├── CustomerProxy.cs │ └── OrderProxy.cs ├── Api.Gateway.WebClient.Proxy │ ├── Api.Gateway.WebClient.Proxy.csproj │ ├── ClientProxy.cs │ ├── Config │ │ ├── ApiGatewayUrl.cs │ │ └── HttpClientTokenExtension.cs │ ├── OrderProxy.cs │ └── ProductProxy.cs └── Api.Gateway.WebClient │ ├── Api.Gateway.WebClient.csproj │ ├── Api.Gateway.WebClient.csproj.user │ ├── Config │ └── StartUpConfiguration.cs │ ├── Controllers │ ├── ClientController.cs │ ├── DefaultController.cs │ ├── OrderController.cs │ └── ProductController.cs │ ├── Program.cs │ ├── Startup.cs │ └── appsettings.json └── Services ├── Catalog ├── Catalog.Api │ ├── Catalog.Api.csproj │ ├── Catalog.Api.csproj.user │ ├── Controllers │ │ ├── DefaultController.cs │ │ ├── ProductController.cs │ │ └── ProductInStockController.cs │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.json │ └── healthchecks │ │ └── db ├── Catalog.Common │ ├── Catalog.Common.csproj │ └── Enums.cs ├── Catalog.Domain │ ├── Catalog.Domain.csproj │ ├── Product.cs │ └── ProductInStock.cs ├── Catalog.Persistence.Database │ ├── ApplicationDbContext.cs │ ├── Catalog.Persistence.Database.csproj │ ├── Configuration │ │ ├── ProductConfiguration.cs │ │ └── ProductInStockConfiguration.cs │ └── Migrations │ │ ├── 20200114173001_Initialize.Designer.cs │ │ ├── 20200114173001_Initialize.cs │ │ └── ApplicationDbContextModelSnapshot.cs ├── Catalog.Service.EventHandlers │ ├── Catalog.Service.EventHandlers.csproj │ ├── Commands │ │ ├── ProductCreateCommand.cs │ │ └── ProductInStockUpdateStockCommand.cs │ ├── Exceptions │ │ └── ProductInStockUpdateStockCommandException.cs │ ├── ProductCreateEventHandler.cs │ └── ProductInStockUpdateStockEventHandler.cs ├── Catalog.Service.Queries │ ├── Catalog.Service.Queries.csproj │ ├── DTOs │ │ ├── ProductDto.cs │ │ └── ProductInStockDto.cs │ ├── ProductInStockQueryService.cs │ └── ProductQueryService.cs └── Catalog.Tests │ ├── Catalog.Tests.csproj │ ├── Config │ └── ApplicationDbContextInMemory.cs │ └── ProductInStockUpdateStockEventHandlerTest.cs ├── Customer ├── Customer.Api │ ├── Controllers │ │ ├── ClientController.cs │ │ └── DefaultController.cs │ ├── Customer.Api.csproj │ ├── Customer.Api.csproj.user │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.json │ └── healthchecks │ │ └── db ├── Customer.Domain │ ├── Client.cs │ └── Customer.Domain.csproj ├── Customer.Persistence.Database │ ├── ApplicationDbContext.cs │ ├── Configuration │ │ └── ClientConfiguration.cs │ ├── Customer.Persistence.Database.csproj │ └── Migrations │ │ ├── 20200115054507_Initialize.Designer.cs │ │ ├── 20200115054507_Initialize.cs │ │ └── ApplicationDbContextModelSnapshot.cs ├── Customer.Service.EventHandlers │ ├── ClientEventHandler.cs │ ├── Commands │ │ └── ClientCreateCommand.cs │ └── Customer.Service.EventHandlers.csproj └── Customer.Service.Queries │ ├── ClientQueryService.cs │ ├── Customer.Service.Queries.csproj │ └── DTOs │ └── ClientDto.cs ├── Identity ├── Identity.Api │ ├── Controllers │ │ ├── DefaultController.cs │ │ ├── IdentityController.cs │ │ └── UserController.cs │ ├── Identity.Api.csproj │ ├── Identity.Api.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── PublishProfiles │ │ │ └── FolderProfile.pubxml.user │ ├── Startup.cs │ ├── appsettings.json │ ├── healthchecks │ │ └── db │ └── healthchecksdb ├── Identity.Domain │ ├── ApplicationRole.cs │ ├── ApplicationUser.cs │ ├── ApplicationUserRole.cs │ └── Identity.Domain.csproj ├── Identity.Persistence.Database │ ├── ApplicationDbContext.cs │ ├── Configuration │ │ ├── ApplicationRoleConfiguration.cs │ │ └── ApplicationUserConfiguration.cs │ ├── Identity.Persistence.Database.csproj │ └── Migrations │ │ ├── 20200115170848_Initialize.Designer.cs │ │ ├── 20200115170848_Initialize.cs │ │ └── ApplicationDbContextModelSnapshot.cs ├── Identity.Service.EventHandlers │ ├── Commands │ │ ├── UserCreateCommand.cs │ │ └── UserLoginCommand.cs │ ├── Identity.Service.EventHandlers.csproj │ ├── Responses │ │ └── IdentityAccess.cs │ ├── UserCreateEventHandler.cs │ └── UserLoginEventHandler.cs └── Identity.Service.Queries │ ├── DTOs │ └── UserDto.cs │ ├── Identity.Service.Queries.csproj │ └── UserQueryService.cs ├── Order ├── Order.Api │ ├── Controllers │ │ ├── DefaultController.cs │ │ └── OrderController.cs │ ├── Order.Api.csproj │ ├── Order.Api.csproj.user │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.json │ └── healthchecks │ │ └── db ├── Order.Common │ ├── Enums.cs │ └── Order.Common.csproj ├── Order.Domain │ ├── Order.Domain.csproj │ ├── Order.cs │ └── OrderDetail.cs ├── Order.Persistence.Database │ ├── ApplicationDbContext.cs │ ├── Configuration │ │ ├── OrderConfiguration.cs │ │ └── OrderDetailConfiguration.cs │ ├── Migrations │ │ ├── 20200115063650_Initialize.Designer.cs │ │ ├── 20200115063650_Initialize.cs │ │ └── ApplicationDbContextModelSnapshot.cs │ └── Order.Persistence.Database.csproj ├── Order.Service.EventHandlers │ ├── Commands │ │ └── OrderCreateCommand.cs │ ├── Order.Service.EventHandlers.csproj │ └── OrderCreateEventHandler.cs ├── Order.Service.Proxies │ ├── ApiUrls.cs │ ├── AzureServiceBus.cs │ ├── Catalog │ │ ├── CatalogProxy.cs │ │ └── Commands │ │ │ └── ProductInStockUpdateStockCommand.cs │ ├── HttpClientTokenExtension.cs │ └── Order.Service.Proxies.csproj └── Order.Service.Queries │ ├── DTOs │ ├── OrderDetailDto.cs │ └── OrderDto.cs │ ├── Order.Service.Queries.csproj │ └── OrderQueryService.cs ├── Service.Common.Authentication ├── JwtAuthenticationExtension.cs └── Service.Common.Authentication.csproj ├── Service.Common.Collection ├── DataCollection.cs └── Service.Common.Collection.csproj ├── Service.Common.Mapping ├── DtoMapperExtension.cs └── Service.Common.Mapping.csproj └── Service.Common.Paging ├── PagingExtension.cs └── Service.Common.Paging.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/.gitignore -------------------------------------------------------------------------------- /KodotiCommerce.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/KodotiCommerce.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/README.md -------------------------------------------------------------------------------- /clear.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/clear.bat -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/Clients.Authentication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/Clients.Authentication.csproj -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/Clients.Authentication.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/Clients.Authentication.csproj.user -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/Models/IdentityAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/Models/IdentityAccess.cs -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/Models/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/Models/LoginViewModel.cs -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/Pages/Error.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/Pages/Index.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/Program.cs -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/Startup.cs -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/appsettings.json -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/Clients/Clients.Authentication/wwwroot/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.Authentication/wwwroot/logo.png -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Clients.WebClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Clients.WebClient.csproj -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Clients.WebClient.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Clients.WebClient.csproj.user -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Models/AccessTokenUserInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Models/AccessTokenUserInformation.cs -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/Error.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/Index.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/Orders/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/Orders/Create.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/Orders/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/Orders/Create.cshtml.cs -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/Orders/Detail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/Orders/Detail.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/Orders/Detail.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/Orders/Detail.cshtml.cs -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/Orders/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/Orders/Index.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/Orders/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/Orders/Index.cshtml.cs -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Program.cs -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Proxies/Api.Gateway.Models.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Proxies/Api.Gateway.Models.dll -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Proxies/Api.Gateway.WebClient.Proxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Proxies/Api.Gateway.WebClient.Proxy.dll -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/Startup.cs -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/appsettings.json -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/Clients/Clients.WebClient/wwwroot/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Clients/Clients.WebClient/wwwroot/logo.png -------------------------------------------------------------------------------- /src/Common/Common.Logging/Common.Logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Common/Common.Logging/Common.Logging.csproj -------------------------------------------------------------------------------- /src/Common/Common.Logging/SysLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Common/Common.Logging/SysLogger.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.Models/Api.Gateway.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.Models/Api.Gateway.Models.csproj -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.Models/Catalog/DTOs/ProductDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.Models/Catalog/DTOs/ProductDto.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.Models/Customer/DTOs/ClientDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.Models/Customer/DTOs/ClientDto.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.Models/DataCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.Models/DataCollection.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.Models/Order/Commands/OrderCreateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.Models/Order/Commands/OrderCreateCommand.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.Models/Order/Commons/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.Models/Order/Commons/Enums.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.Models/Order/DTOs/OrderDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.Models/Order/DTOs/OrderDto.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.Proxies/Api.Gateway.Proxies.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.Proxies/Api.Gateway.Proxies.csproj -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.Proxies/ApiUrls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.Proxies/ApiUrls.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.Proxies/CatalogProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.Proxies/CatalogProxy.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.Proxies/Config/HttpClientTokenExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.Proxies/Config/HttpClientTokenExtension.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.Proxies/CustomerProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.Proxies/CustomerProxy.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.Proxies/OrderProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.Proxies/OrderProxy.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient.Proxy/Api.Gateway.WebClient.Proxy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient.Proxy/Api.Gateway.WebClient.Proxy.csproj -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient.Proxy/ClientProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient.Proxy/ClientProxy.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient.Proxy/Config/ApiGatewayUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient.Proxy/Config/ApiGatewayUrl.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient.Proxy/Config/HttpClientTokenExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient.Proxy/Config/HttpClientTokenExtension.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient.Proxy/OrderProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient.Proxy/OrderProxy.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient.Proxy/ProductProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient.Proxy/ProductProxy.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient/Api.Gateway.WebClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient/Api.Gateway.WebClient.csproj -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient/Api.Gateway.WebClient.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient/Api.Gateway.WebClient.csproj.user -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient/Config/StartUpConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient/Config/StartUpConfiguration.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient/Controllers/ClientController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient/Controllers/ClientController.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient/Controllers/DefaultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient/Controllers/DefaultController.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient/Controllers/OrderController.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient/Controllers/ProductController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient/Controllers/ProductController.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient/Program.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient/Startup.cs -------------------------------------------------------------------------------- /src/Gateways/Api.Gateway.WebClient/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Gateways/Api.Gateway.WebClient/appsettings.json -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Api/Catalog.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Api/Catalog.Api.csproj -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Api/Catalog.Api.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Api/Catalog.Api.csproj.user -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Api/Controllers/DefaultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Api/Controllers/DefaultController.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Api/Controllers/ProductController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Api/Controllers/ProductController.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Api/Controllers/ProductInStockController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Api/Controllers/ProductInStockController.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Api/Program.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Api/Startup.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Api/appsettings.json -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Api/healthchecks/db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Api/healthchecks/db -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Common/Catalog.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Common/Catalog.Common.csproj -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Common/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Common/Enums.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Domain/Catalog.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Domain/Catalog.Domain.csproj -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Domain/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Domain/Product.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Domain/ProductInStock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Domain/ProductInStock.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Persistence.Database/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Persistence.Database/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Persistence.Database/Catalog.Persistence.Database.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Persistence.Database/Catalog.Persistence.Database.csproj -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Persistence.Database/Configuration/ProductConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Persistence.Database/Configuration/ProductConfiguration.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Persistence.Database/Configuration/ProductInStockConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Persistence.Database/Configuration/ProductInStockConfiguration.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Persistence.Database/Migrations/20200114173001_Initialize.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Persistence.Database/Migrations/20200114173001_Initialize.Designer.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Persistence.Database/Migrations/20200114173001_Initialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Persistence.Database/Migrations/20200114173001_Initialize.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Persistence.Database/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Persistence.Database/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Service.EventHandlers/Catalog.Service.EventHandlers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Service.EventHandlers/Catalog.Service.EventHandlers.csproj -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Service.EventHandlers/Commands/ProductCreateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Service.EventHandlers/Commands/ProductCreateCommand.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Service.EventHandlers/Commands/ProductInStockUpdateStockCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Service.EventHandlers/Commands/ProductInStockUpdateStockCommand.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Service.EventHandlers/Exceptions/ProductInStockUpdateStockCommandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Service.EventHandlers/Exceptions/ProductInStockUpdateStockCommandException.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Service.EventHandlers/ProductCreateEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Service.EventHandlers/ProductCreateEventHandler.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Service.EventHandlers/ProductInStockUpdateStockEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Service.EventHandlers/ProductInStockUpdateStockEventHandler.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Service.Queries/Catalog.Service.Queries.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Service.Queries/Catalog.Service.Queries.csproj -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Service.Queries/DTOs/ProductDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Service.Queries/DTOs/ProductDto.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Service.Queries/DTOs/ProductInStockDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Service.Queries/DTOs/ProductInStockDto.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Service.Queries/ProductInStockQueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Service.Queries/ProductInStockQueryService.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Service.Queries/ProductQueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Service.Queries/ProductQueryService.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Tests/Catalog.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Tests/Catalog.Tests.csproj -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Tests/Config/ApplicationDbContextInMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Tests/Config/ApplicationDbContextInMemory.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.Tests/ProductInStockUpdateStockEventHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Catalog/Catalog.Tests/ProductInStockUpdateStockEventHandlerTest.cs -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Api/Controllers/ClientController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Api/Controllers/ClientController.cs -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Api/Controllers/DefaultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Api/Controllers/DefaultController.cs -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Api/Customer.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Api/Customer.Api.csproj -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Api/Customer.Api.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Api/Customer.Api.csproj.user -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Api/Program.cs -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Api/Startup.cs -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Api/appsettings.json -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Api/healthchecks/db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Api/healthchecks/db -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Domain/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Domain/Client.cs -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Domain/Customer.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Domain/Customer.Domain.csproj -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Persistence.Database/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Persistence.Database/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Persistence.Database/Configuration/ClientConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Persistence.Database/Configuration/ClientConfiguration.cs -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Persistence.Database/Customer.Persistence.Database.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Persistence.Database/Customer.Persistence.Database.csproj -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Persistence.Database/Migrations/20200115054507_Initialize.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Persistence.Database/Migrations/20200115054507_Initialize.Designer.cs -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Persistence.Database/Migrations/20200115054507_Initialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Persistence.Database/Migrations/20200115054507_Initialize.cs -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Persistence.Database/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Persistence.Database/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Service.EventHandlers/ClientEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Service.EventHandlers/ClientEventHandler.cs -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Service.EventHandlers/Commands/ClientCreateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Service.EventHandlers/Commands/ClientCreateCommand.cs -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Service.EventHandlers/Customer.Service.EventHandlers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Service.EventHandlers/Customer.Service.EventHandlers.csproj -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Service.Queries/ClientQueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Service.Queries/ClientQueryService.cs -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Service.Queries/Customer.Service.Queries.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Service.Queries/Customer.Service.Queries.csproj -------------------------------------------------------------------------------- /src/Services/Customer/Customer.Service.Queries/DTOs/ClientDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Customer/Customer.Service.Queries/DTOs/ClientDto.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Api/Controllers/DefaultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Api/Controllers/DefaultController.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Api/Controllers/IdentityController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Api/Controllers/IdentityController.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Api/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Api/Controllers/UserController.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Api/Identity.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Api/Identity.Api.csproj -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Api/Identity.Api.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Api/Identity.Api.csproj.user -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Api/Program.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Api/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Api/Properties/PublishProfiles/FolderProfile.pubxml.user -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Api/Startup.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Api/appsettings.json -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Api/healthchecks/db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Api/healthchecks/db -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Api/healthchecksdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Api/healthchecksdb -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Domain/ApplicationRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Domain/ApplicationRole.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Domain/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Domain/ApplicationUser.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Domain/ApplicationUserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Domain/ApplicationUserRole.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Domain/Identity.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Domain/Identity.Domain.csproj -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Persistence.Database/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Persistence.Database/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Persistence.Database/Configuration/ApplicationRoleConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Persistence.Database/Configuration/ApplicationRoleConfiguration.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Persistence.Database/Configuration/ApplicationUserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Persistence.Database/Configuration/ApplicationUserConfiguration.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Persistence.Database/Identity.Persistence.Database.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Persistence.Database/Identity.Persistence.Database.csproj -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Persistence.Database/Migrations/20200115170848_Initialize.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Persistence.Database/Migrations/20200115170848_Initialize.Designer.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Persistence.Database/Migrations/20200115170848_Initialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Persistence.Database/Migrations/20200115170848_Initialize.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Persistence.Database/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Persistence.Database/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Service.EventHandlers/Commands/UserCreateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Service.EventHandlers/Commands/UserCreateCommand.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Service.EventHandlers/Commands/UserLoginCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Service.EventHandlers/Commands/UserLoginCommand.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Service.EventHandlers/Identity.Service.EventHandlers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Service.EventHandlers/Identity.Service.EventHandlers.csproj -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Service.EventHandlers/Responses/IdentityAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Service.EventHandlers/Responses/IdentityAccess.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Service.EventHandlers/UserCreateEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Service.EventHandlers/UserCreateEventHandler.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Service.EventHandlers/UserLoginEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Service.EventHandlers/UserLoginEventHandler.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Service.Queries/DTOs/UserDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Service.Queries/DTOs/UserDto.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Service.Queries/Identity.Service.Queries.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Service.Queries/Identity.Service.Queries.csproj -------------------------------------------------------------------------------- /src/Services/Identity/Identity.Service.Queries/UserQueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Identity/Identity.Service.Queries/UserQueryService.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Api/Controllers/DefaultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Api/Controllers/DefaultController.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Api/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Api/Controllers/OrderController.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Api/Order.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Api/Order.Api.csproj -------------------------------------------------------------------------------- /src/Services/Order/Order.Api/Order.Api.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Api/Order.Api.csproj.user -------------------------------------------------------------------------------- /src/Services/Order/Order.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Api/Program.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Api/Startup.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Api/appsettings.json -------------------------------------------------------------------------------- /src/Services/Order/Order.Api/healthchecks/db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Api/healthchecks/db -------------------------------------------------------------------------------- /src/Services/Order/Order.Common/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Common/Enums.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Common/Order.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Common/Order.Common.csproj -------------------------------------------------------------------------------- /src/Services/Order/Order.Domain/Order.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Domain/Order.Domain.csproj -------------------------------------------------------------------------------- /src/Services/Order/Order.Domain/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Domain/Order.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Domain/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Domain/OrderDetail.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Persistence.Database/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Persistence.Database/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Persistence.Database/Configuration/OrderConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Persistence.Database/Configuration/OrderConfiguration.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Persistence.Database/Configuration/OrderDetailConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Persistence.Database/Configuration/OrderDetailConfiguration.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Persistence.Database/Migrations/20200115063650_Initialize.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Persistence.Database/Migrations/20200115063650_Initialize.Designer.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Persistence.Database/Migrations/20200115063650_Initialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Persistence.Database/Migrations/20200115063650_Initialize.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Persistence.Database/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Persistence.Database/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Persistence.Database/Order.Persistence.Database.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Persistence.Database/Order.Persistence.Database.csproj -------------------------------------------------------------------------------- /src/Services/Order/Order.Service.EventHandlers/Commands/OrderCreateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Service.EventHandlers/Commands/OrderCreateCommand.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Service.EventHandlers/Order.Service.EventHandlers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Service.EventHandlers/Order.Service.EventHandlers.csproj -------------------------------------------------------------------------------- /src/Services/Order/Order.Service.EventHandlers/OrderCreateEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Service.EventHandlers/OrderCreateEventHandler.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Service.Proxies/ApiUrls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Service.Proxies/ApiUrls.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Service.Proxies/AzureServiceBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Service.Proxies/AzureServiceBus.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Service.Proxies/Catalog/CatalogProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Service.Proxies/Catalog/CatalogProxy.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Service.Proxies/Catalog/Commands/ProductInStockUpdateStockCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Service.Proxies/Catalog/Commands/ProductInStockUpdateStockCommand.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Service.Proxies/HttpClientTokenExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Service.Proxies/HttpClientTokenExtension.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Service.Proxies/Order.Service.Proxies.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Service.Proxies/Order.Service.Proxies.csproj -------------------------------------------------------------------------------- /src/Services/Order/Order.Service.Queries/DTOs/OrderDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Service.Queries/DTOs/OrderDetailDto.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Service.Queries/DTOs/OrderDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Service.Queries/DTOs/OrderDto.cs -------------------------------------------------------------------------------- /src/Services/Order/Order.Service.Queries/Order.Service.Queries.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Service.Queries/Order.Service.Queries.csproj -------------------------------------------------------------------------------- /src/Services/Order/Order.Service.Queries/OrderQueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Order/Order.Service.Queries/OrderQueryService.cs -------------------------------------------------------------------------------- /src/Services/Service.Common.Authentication/JwtAuthenticationExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Service.Common.Authentication/JwtAuthenticationExtension.cs -------------------------------------------------------------------------------- /src/Services/Service.Common.Authentication/Service.Common.Authentication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Service.Common.Authentication/Service.Common.Authentication.csproj -------------------------------------------------------------------------------- /src/Services/Service.Common.Collection/DataCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Service.Common.Collection/DataCollection.cs -------------------------------------------------------------------------------- /src/Services/Service.Common.Collection/Service.Common.Collection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Service.Common.Collection/Service.Common.Collection.csproj -------------------------------------------------------------------------------- /src/Services/Service.Common.Mapping/DtoMapperExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Service.Common.Mapping/DtoMapperExtension.cs -------------------------------------------------------------------------------- /src/Services/Service.Common.Mapping/Service.Common.Mapping.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Service.Common.Mapping/Service.Common.Mapping.csproj -------------------------------------------------------------------------------- /src/Services/Service.Common.Paging/PagingExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Service.Common.Paging/PagingExtension.cs -------------------------------------------------------------------------------- /src/Services/Service.Common.Paging/Service.Common.Paging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anexsoft/Kodoti-Commerce-Microservice-Architecture-.NET-Core/HEAD/src/Services/Service.Common.Paging/Service.Common.Paging.csproj --------------------------------------------------------------------------------