├── .github └── FUNDING.yml ├── .gitignore ├── AspnetRunAngularRealWorld.sln ├── LICENSE ├── README.md ├── src ├── AspnetRun.Api │ ├── Application │ │ ├── Commands │ │ │ ├── CreateProductCommandHandler.cs │ │ │ ├── DeleteProductByIdCommandHandler.cs │ │ │ └── UpdateProductCommandHandler.cs │ │ ├── Middlewares │ │ │ └── LoggingMiddleware.cs │ │ └── Validations │ │ │ ├── CreateProductRequestValidator.cs │ │ │ ├── DeleteProductRequestValidator.cs │ │ │ ├── GetProductByIdRequestValidator.cs │ │ │ ├── GetProductsByCategoryIdRequestValidator.cs │ │ │ ├── GetProductsByNameRequestValidator.cs │ │ │ ├── SearchProductsRequestValidator.cs │ │ │ └── UpdateProductRequestValidator.cs │ ├── AspnetRun.Api.csproj │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── CategoryController.cs │ │ ├── CustomerController.cs │ │ └── ProductController.cs │ ├── IoC │ │ └── DependencyRegistrar.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Requests │ │ ├── CreateProductRequest.cs │ │ ├── DeleteProductByIdRequest.cs │ │ ├── GetCustomerByIdRequest.cs │ │ ├── GetProductByIdRequest.cs │ │ ├── GetProductsByCategoryIdRequest.cs │ │ ├── GetProductsByNameRequest.cs │ │ ├── LoginRequest.cs │ │ ├── SearchPageRequest.cs │ │ └── UpdateProductRequest.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── AspnetRun.Application │ ├── AspnetRun.Application.csproj │ ├── Exceptions │ │ └── ApplicationException.cs │ ├── Interfaces │ │ ├── ICategoryService.cs │ │ ├── ICustomerService.cs │ │ └── IProductService.cs │ ├── IoC │ │ └── DependencyRegistrar.cs │ ├── Mapper │ │ └── ObjectMapper.cs │ ├── Models │ │ ├── Base │ │ │ ├── BaseModel.cs │ │ │ └── EnumModel.cs │ │ ├── CategoryModel.cs │ │ ├── CustomerModel.cs │ │ └── ProductModel.cs │ └── Services │ │ ├── CategoryService.cs │ │ ├── CustomerService.cs │ │ └── ProductService.cs ├── AspnetRun.Core │ ├── AspnetRun.Core.csproj │ ├── Configuration │ │ └── AspnetRunSettings.cs │ ├── Entities │ │ ├── Address.cs │ │ ├── AspnetRunRole.cs │ │ ├── AspnetRunUser.cs │ │ ├── Base │ │ │ ├── Entity.cs │ │ │ ├── EntityBase.cs │ │ │ ├── Enumeration.cs │ │ │ └── IEntityBase.cs │ │ ├── Category.cs │ │ ├── Contract.cs │ │ ├── ContractItem.cs │ │ ├── ContractPaymentAssociation.cs │ │ ├── Customer.cs │ │ ├── Order.cs │ │ ├── OrderItem.cs │ │ ├── OrderPaymentAssociation.cs │ │ ├── Payment.cs │ │ ├── PaymentItem.cs │ │ ├── Product.cs │ │ ├── ProductSpecificationAssociation.cs │ │ └── Specification.cs │ ├── Exceptions │ │ └── CoreException.cs │ ├── Interfaces │ │ └── IAppLogger.cs │ ├── Paging │ │ ├── FilteringOption.cs │ │ ├── IPagedList.cs │ │ ├── PageSearchArgs.cs │ │ ├── PagingArgs.cs │ │ ├── PagingStrategy.cs │ │ └── SortingOption.cs │ ├── Repositories │ │ ├── Base │ │ │ ├── IEnumRepository.cs │ │ │ ├── IRepository.cs │ │ │ └── IRepositoryBase.cs │ │ ├── ICategoryRepository.cs │ │ └── IProductRepository.cs │ └── Specifications │ │ ├── Base │ │ ├── BaseSpecification.cs │ │ └── ISpecification.cs │ │ └── ProductWithCategorySpecification.cs ├── AspnetRun.Infrastructure │ ├── AspnetRun.Infrastructure.csproj │ ├── Behaviors │ │ └── TransactionBehaviour.cs │ ├── Data │ │ ├── AspnetRunContext.cs │ │ ├── AspnetRunContextSeed.cs │ │ ├── AspnetRunCustomModelBuilder.cs │ │ └── ICustomModelBuilder.cs │ ├── Exceptions │ │ └── InfrastructureException.cs │ ├── IoC │ │ ├── DependencyRegistrar.cs │ │ └── IDependencyRegistrar.cs │ ├── Logging │ │ └── LoggerAdapter.cs │ ├── Migrations │ │ ├── 20190710081402_initial.Designer.cs │ │ ├── 20190710081402_initial.cs │ │ └── AspnetRunContextModelSnapshot.cs │ ├── Misc │ │ ├── AppDomainTypeFinder.cs │ │ ├── AppFileProvider.cs │ │ ├── IAppFileProvider.cs │ │ ├── ITypeFinder.cs │ │ └── WebAppTypeFinder.cs │ ├── Paging │ │ ├── PagedList.cs │ │ └── PagingExtensions.cs │ └── Repository │ │ ├── Base │ │ ├── EnumRepository.cs │ │ ├── Repository.cs │ │ ├── RepositoryBase.cs │ │ └── SpecificationEvaluator.cs │ │ ├── CategoryRepository.cs │ │ └── ProductRepository.cs └── AspnetRun.Web │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app │ │ ├── _nav.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── core │ │ │ ├── core.module.ts │ │ │ ├── ensure-module-loaded-once.guard.ts │ │ │ ├── interceptors │ │ │ │ ├── http-auth.interceptor.ts │ │ │ │ └── http-error.interceptor.ts │ │ │ ├── layout │ │ │ │ ├── layout.component.html │ │ │ │ └── layout.component.ts │ │ │ └── services │ │ │ │ ├── auth-guard.service.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── category-data.service.ts │ │ │ │ ├── customer-data.services.ts │ │ │ │ ├── logger.service.ts │ │ │ │ ├── page.service.ts │ │ │ │ ├── product-data.service.ts │ │ │ │ ├── spinner.service.ts │ │ │ │ └── validation.service.ts │ │ ├── shared │ │ │ ├── interfaces.ts │ │ │ ├── pipes │ │ │ │ ├── capitalize.pipe.ts │ │ │ │ └── trim.pipe.ts │ │ │ ├── shared.module.ts │ │ │ └── validation-message │ │ │ │ └── validation-message.component.ts │ │ └── views │ │ │ ├── about │ │ │ ├── about.component.css │ │ │ ├── about.component.html │ │ │ └── about.component.ts │ │ │ ├── category │ │ │ ├── category-list │ │ │ │ ├── category-list.component.css │ │ │ │ ├── category-list.component.html │ │ │ │ └── category-list.component.ts │ │ │ ├── category-routing.module.ts │ │ │ └── category.module.ts │ │ │ ├── customer │ │ │ ├── customer-cart │ │ │ │ ├── customer-cart.component.css │ │ │ │ ├── customer-cart.component.html │ │ │ │ └── customer-cart.component.ts │ │ │ ├── customer-detail │ │ │ │ ├── customer-detail.component.css │ │ │ │ ├── customer-detail.component.html │ │ │ │ └── customer-detail.component.ts │ │ │ ├── customer-edit │ │ │ │ ├── customer-edit.component.css │ │ │ │ ├── customer-edit.component.html │ │ │ │ └── customer-edit.component.ts │ │ │ ├── customer-list │ │ │ │ ├── customer-grid │ │ │ │ │ ├── customer-grid.component.css │ │ │ │ │ ├── customer-grid.component.html │ │ │ │ │ └── customer-grid.component.ts │ │ │ │ ├── customer-list.component.css │ │ │ │ ├── customer-list.component.html │ │ │ │ ├── customer-list.component.ts │ │ │ │ └── filter-textbox │ │ │ │ │ ├── filter-textbox.component.css │ │ │ │ │ ├── filter-textbox.component.html │ │ │ │ │ └── filter-textbox.component.ts │ │ │ ├── customer-order │ │ │ │ ├── customer-order.component.css │ │ │ │ ├── customer-order.component.html │ │ │ │ └── customer-order.component.ts │ │ │ ├── customer-routing.module.ts │ │ │ └── customer.module.ts │ │ │ ├── dashboard │ │ │ ├── dashboard.component.html │ │ │ └── dashboard.component.ts │ │ │ ├── error │ │ │ ├── 404.component.html │ │ │ ├── 404.component.ts │ │ │ ├── 500.component.html │ │ │ └── 500.component.ts │ │ │ ├── login │ │ │ ├── login.component.html │ │ │ └── login.component.ts │ │ │ ├── product │ │ │ ├── product-delete │ │ │ │ ├── product-delete-modal.component.css │ │ │ │ ├── product-delete-modal.component.html │ │ │ │ └── product-delete-modal.component.ts │ │ │ ├── product-detail │ │ │ │ ├── product-detail.component.css │ │ │ │ ├── product-detail.component.html │ │ │ │ └── product-detail.component.ts │ │ │ ├── product-edit │ │ │ │ ├── product-edit.component.css │ │ │ │ ├── product-edit.component.html │ │ │ │ └── product-edit.component.ts │ │ │ ├── product-list │ │ │ │ ├── product-list.component.css │ │ │ │ ├── product-list.component.html │ │ │ │ └── product-list.component.ts │ │ │ ├── product-routing.module.ts │ │ │ └── product.module.ts │ │ │ └── register │ │ │ ├── register.component.html │ │ │ └── register.component.ts │ ├── assets │ │ ├── .gitkeep │ │ └── img │ │ │ ├── avatars │ │ │ └── avatar.svg │ │ │ ├── brand │ │ │ ├── logo.svg │ │ │ └── sygnet.svg │ │ │ ├── female.png │ │ │ ├── male.png │ │ │ └── people.png │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json │ ├── tsconfig.json │ └── tslint.json └── test └── AspnetRun.Tests ├── AspnetRun.Tests.csproj └── UnitTest1.cs /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://aspnetrun.azurewebsites.net/DownloadBook"] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/.gitignore -------------------------------------------------------------------------------- /AspnetRunAngularRealWorld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/AspnetRunAngularRealWorld.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/README.md -------------------------------------------------------------------------------- /src/AspnetRun.Api/Application/Commands/CreateProductCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Application/Commands/CreateProductCommandHandler.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Application/Commands/DeleteProductByIdCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Application/Commands/DeleteProductByIdCommandHandler.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Application/Commands/UpdateProductCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Application/Commands/UpdateProductCommandHandler.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Application/Middlewares/LoggingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Application/Middlewares/LoggingMiddleware.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Application/Validations/CreateProductRequestValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Application/Validations/CreateProductRequestValidator.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Application/Validations/DeleteProductRequestValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Application/Validations/DeleteProductRequestValidator.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Application/Validations/GetProductByIdRequestValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Application/Validations/GetProductByIdRequestValidator.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Application/Validations/GetProductsByCategoryIdRequestValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Application/Validations/GetProductsByCategoryIdRequestValidator.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Application/Validations/GetProductsByNameRequestValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Application/Validations/GetProductsByNameRequestValidator.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Application/Validations/SearchProductsRequestValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Application/Validations/SearchProductsRequestValidator.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Application/Validations/UpdateProductRequestValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Application/Validations/UpdateProductRequestValidator.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/AspnetRun.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/AspnetRun.Api.csproj -------------------------------------------------------------------------------- /src/AspnetRun.Api/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Controllers/CategoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Controllers/CategoryController.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Controllers/CustomerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Controllers/CustomerController.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Controllers/ProductController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Controllers/ProductController.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/IoC/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/IoC/DependencyRegistrar.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Program.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/AspnetRun.Api/Requests/CreateProductRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Requests/CreateProductRequest.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Requests/DeleteProductByIdRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Requests/DeleteProductByIdRequest.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Requests/GetCustomerByIdRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Requests/GetCustomerByIdRequest.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Requests/GetProductByIdRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Requests/GetProductByIdRequest.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Requests/GetProductsByCategoryIdRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Requests/GetProductsByCategoryIdRequest.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Requests/GetProductsByNameRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Requests/GetProductsByNameRequest.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Requests/LoginRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Requests/LoginRequest.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Requests/SearchPageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Requests/SearchPageRequest.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Requests/UpdateProductRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Requests/UpdateProductRequest.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/Startup.cs -------------------------------------------------------------------------------- /src/AspnetRun.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/appsettings.Development.json -------------------------------------------------------------------------------- /src/AspnetRun.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Api/appsettings.json -------------------------------------------------------------------------------- /src/AspnetRun.Application/AspnetRun.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Application/AspnetRun.Application.csproj -------------------------------------------------------------------------------- /src/AspnetRun.Application/Exceptions/ApplicationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Application/Exceptions/ApplicationException.cs -------------------------------------------------------------------------------- /src/AspnetRun.Application/Interfaces/ICategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Application/Interfaces/ICategoryService.cs -------------------------------------------------------------------------------- /src/AspnetRun.Application/Interfaces/ICustomerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Application/Interfaces/ICustomerService.cs -------------------------------------------------------------------------------- /src/AspnetRun.Application/Interfaces/IProductService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Application/Interfaces/IProductService.cs -------------------------------------------------------------------------------- /src/AspnetRun.Application/IoC/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Application/IoC/DependencyRegistrar.cs -------------------------------------------------------------------------------- /src/AspnetRun.Application/Mapper/ObjectMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Application/Mapper/ObjectMapper.cs -------------------------------------------------------------------------------- /src/AspnetRun.Application/Models/Base/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Application/Models/Base/BaseModel.cs -------------------------------------------------------------------------------- /src/AspnetRun.Application/Models/Base/EnumModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Application/Models/Base/EnumModel.cs -------------------------------------------------------------------------------- /src/AspnetRun.Application/Models/CategoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Application/Models/CategoryModel.cs -------------------------------------------------------------------------------- /src/AspnetRun.Application/Models/CustomerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Application/Models/CustomerModel.cs -------------------------------------------------------------------------------- /src/AspnetRun.Application/Models/ProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Application/Models/ProductModel.cs -------------------------------------------------------------------------------- /src/AspnetRun.Application/Services/CategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Application/Services/CategoryService.cs -------------------------------------------------------------------------------- /src/AspnetRun.Application/Services/CustomerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Application/Services/CustomerService.cs -------------------------------------------------------------------------------- /src/AspnetRun.Application/Services/ProductService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Application/Services/ProductService.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/AspnetRun.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/AspnetRun.Core.csproj -------------------------------------------------------------------------------- /src/AspnetRun.Core/Configuration/AspnetRunSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Configuration/AspnetRunSettings.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/Address.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/AspnetRunRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/AspnetRunRole.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/AspnetRunUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/AspnetRunUser.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/Base/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/Base/Entity.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/Base/EntityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/Base/EntityBase.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/Base/Enumeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/Base/Enumeration.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/Base/IEntityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/Base/IEntityBase.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/Category.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/Contract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/Contract.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/ContractItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/ContractItem.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/ContractPaymentAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/ContractPaymentAssociation.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/Customer.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/Order.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/OrderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/OrderItem.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/OrderPaymentAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/OrderPaymentAssociation.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/Payment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/Payment.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/PaymentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/PaymentItem.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/Product.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/ProductSpecificationAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/ProductSpecificationAssociation.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Entities/Specification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Entities/Specification.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Exceptions/CoreException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Exceptions/CoreException.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Interfaces/IAppLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Interfaces/IAppLogger.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Paging/FilteringOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Paging/FilteringOption.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Paging/IPagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Paging/IPagedList.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Paging/PageSearchArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Paging/PageSearchArgs.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Paging/PagingArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Paging/PagingArgs.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Paging/PagingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Paging/PagingStrategy.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Paging/SortingOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Paging/SortingOption.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Repositories/Base/IEnumRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Repositories/Base/IEnumRepository.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Repositories/Base/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Repositories/Base/IRepository.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Repositories/Base/IRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Repositories/Base/IRepositoryBase.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Repositories/ICategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Repositories/ICategoryRepository.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Repositories/IProductRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Repositories/IProductRepository.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Specifications/Base/BaseSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Specifications/Base/BaseSpecification.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Specifications/Base/ISpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Specifications/Base/ISpecification.cs -------------------------------------------------------------------------------- /src/AspnetRun.Core/Specifications/ProductWithCategorySpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Core/Specifications/ProductWithCategorySpecification.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/AspnetRun.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/AspnetRun.Infrastructure.csproj -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Behaviors/TransactionBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Behaviors/TransactionBehaviour.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Data/AspnetRunContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Data/AspnetRunContext.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Data/AspnetRunContextSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Data/AspnetRunContextSeed.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Data/AspnetRunCustomModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Data/AspnetRunCustomModelBuilder.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Data/ICustomModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Data/ICustomModelBuilder.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Exceptions/InfrastructureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Exceptions/InfrastructureException.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/IoC/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/IoC/DependencyRegistrar.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/IoC/IDependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/IoC/IDependencyRegistrar.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Logging/LoggerAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Logging/LoggerAdapter.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Migrations/20190710081402_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Migrations/20190710081402_initial.Designer.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Migrations/20190710081402_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Migrations/20190710081402_initial.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Migrations/AspnetRunContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Migrations/AspnetRunContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Misc/AppDomainTypeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Misc/AppDomainTypeFinder.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Misc/AppFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Misc/AppFileProvider.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Misc/IAppFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Misc/IAppFileProvider.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Misc/ITypeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Misc/ITypeFinder.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Misc/WebAppTypeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Misc/WebAppTypeFinder.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Paging/PagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Paging/PagedList.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Paging/PagingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Paging/PagingExtensions.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Repository/Base/EnumRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Repository/Base/EnumRepository.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Repository/Base/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Repository/Base/Repository.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Repository/Base/RepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Repository/Base/RepositoryBase.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Repository/Base/SpecificationEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Repository/Base/SpecificationEvaluator.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Repository/CategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Repository/CategoryRepository.cs -------------------------------------------------------------------------------- /src/AspnetRun.Infrastructure/Repository/ProductRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Infrastructure/Repository/ProductRepository.cs -------------------------------------------------------------------------------- /src/AspnetRun.Web/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/.editorconfig -------------------------------------------------------------------------------- /src/AspnetRun.Web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/.gitignore -------------------------------------------------------------------------------- /src/AspnetRun.Web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/README.md -------------------------------------------------------------------------------- /src/AspnetRun.Web/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/angular.json -------------------------------------------------------------------------------- /src/AspnetRun.Web/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/browserslist -------------------------------------------------------------------------------- /src/AspnetRun.Web/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/e2e/protractor.conf.js -------------------------------------------------------------------------------- /src/AspnetRun.Web/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/e2e/src/app.po.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /src/AspnetRun.Web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/package-lock.json -------------------------------------------------------------------------------- /src/AspnetRun.Web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/package.json -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/_nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/_nav.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/app.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/app.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/app.module.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/core/core.module.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/core/ensure-module-loaded-once.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/core/ensure-module-loaded-once.guard.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/core/interceptors/http-auth.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/core/interceptors/http-auth.interceptor.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/core/interceptors/http-error.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/core/interceptors/http-error.interceptor.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/core/layout/layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/core/layout/layout.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/core/layout/layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/core/layout/layout.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/core/services/auth-guard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/core/services/auth-guard.service.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/core/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/core/services/auth.service.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/core/services/category-data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/core/services/category-data.service.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/core/services/customer-data.services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/core/services/customer-data.services.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/core/services/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/core/services/logger.service.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/core/services/page.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/core/services/page.service.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/core/services/product-data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/core/services/product-data.service.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/core/services/spinner.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/core/services/spinner.service.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/core/services/validation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/core/services/validation.service.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/shared/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/shared/interfaces.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/shared/pipes/capitalize.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/shared/pipes/capitalize.pipe.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/shared/pipes/trim.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/shared/pipes/trim.pipe.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/shared/validation-message/validation-message.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/shared/validation-message/validation-message.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/about/about.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/about/about.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/about/about.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/category/category-list/category-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/category/category-list/category-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/category/category-list/category-list.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/category/category-list/category-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/category/category-list/category-list.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/category/category-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/category/category-routing.module.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/category/category.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/category/category.module.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-cart/customer-cart.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-cart/customer-cart.component.css -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-cart/customer-cart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-cart/customer-cart.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-cart/customer-cart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-cart/customer-cart.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-detail/customer-detail.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-detail/customer-detail.component.css -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-detail/customer-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-detail/customer-detail.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-detail/customer-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-detail/customer-detail.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-edit/customer-edit.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-edit/customer-edit.component.css -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-edit/customer-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-edit/customer-edit.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-edit/customer-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-edit/customer-edit.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-list/customer-grid/customer-grid.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-list/customer-grid/customer-grid.component.css -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-list/customer-grid/customer-grid.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-list/customer-grid/customer-grid.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-list/customer-grid/customer-grid.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-list/customer-grid/customer-grid.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-list/customer-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-list/customer-list.component.css -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-list/customer-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-list/customer-list.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-list/customer-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-list/customer-list.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-list/filter-textbox/filter-textbox.component.css: -------------------------------------------------------------------------------- 1 | cm-filter-textbox { 2 | margin-top: 5px; 3 | } 4 | -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-list/filter-textbox/filter-textbox.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-list/filter-textbox/filter-textbox.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-list/filter-textbox/filter-textbox.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-list/filter-textbox/filter-textbox.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-order/customer-order.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-order/customer-order.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-order/customer-order.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-order/customer-order.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-order/customer-order.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer-routing.module.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/customer/customer.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/customer/customer.module.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/error/404.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/error/404.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/error/404.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/error/404.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/error/500.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/error/500.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/error/500.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/error/500.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/login/login.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/login/login.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/product/product-delete/product-delete-modal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/product/product-delete/product-delete-modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/product/product-delete/product-delete-modal.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/product/product-delete/product-delete-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/product/product-delete/product-delete-modal.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/product/product-detail/product-detail.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/product/product-detail/product-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/product/product-detail/product-detail.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/product/product-detail/product-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/product/product-detail/product-detail.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/product/product-edit/product-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/product/product-edit/product-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/product/product-edit/product-edit.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/product/product-edit/product-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/product/product-edit/product-edit.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/product/product-list/product-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/product/product-list/product-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/product/product-list/product-list.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/product/product-list/product-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/product/product-list/product-list.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/product/product-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/product/product-routing.module.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/product/product.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/product/product.module.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/register/register.component.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/app/views/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/app/views/register/register.component.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/assets/img/avatars/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/assets/img/avatars/avatar.svg -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/assets/img/brand/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/assets/img/brand/logo.svg -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/assets/img/brand/sygnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/assets/img/brand/sygnet.svg -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/assets/img/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/assets/img/female.png -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/assets/img/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/assets/img/male.png -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/assets/img/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/assets/img/people.png -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/environments/environment.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/favicon.ico -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/index.html -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/karma.conf.js -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/main.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/polyfills.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/styles.scss -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/test.ts -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/AspnetRun.Web/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/src/tslint.json -------------------------------------------------------------------------------- /src/AspnetRun.Web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/tsconfig.json -------------------------------------------------------------------------------- /src/AspnetRun.Web/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/src/AspnetRun.Web/tslint.json -------------------------------------------------------------------------------- /test/AspnetRun.Tests/AspnetRun.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/test/AspnetRun.Tests/AspnetRun.Tests.csproj -------------------------------------------------------------------------------- /test/AspnetRun.Tests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnetrun/run-aspnetcore-cqrs/HEAD/test/AspnetRun.Tests/UnitTest1.cs --------------------------------------------------------------------------------