├── .gitignore ├── Docs └── Slides.pdf ├── LICENSE ├── Northwind.sln ├── NuGet.Config ├── README.md ├── Src ├── Application │ ├── Application.csproj │ ├── Categories │ │ ├── Commands │ │ │ ├── DeleteCategory │ │ │ │ └── DeleteCategoryCommand.cs │ │ │ └── UpsertCategory │ │ │ │ └── UpsertCategoryCommand.cs │ │ └── Queries │ │ │ └── GetCategoriesList │ │ │ ├── CategoriesListVm.cs │ │ │ ├── CategoryDto.cs │ │ │ ├── GetCategoriesListQuery.cs │ │ │ └── GetCategoriesListQueryHandler.cs │ ├── Common │ │ ├── Behaviours │ │ │ ├── RequestLogger.cs │ │ │ ├── RequestPerformanceBehaviour.cs │ │ │ └── RequestValidationBehavior.cs │ │ ├── Exceptions │ │ │ ├── BadRequestException.cs │ │ │ ├── DeleteFailureException.cs │ │ │ ├── NotFoundException.cs │ │ │ └── ValidationException.cs │ │ ├── Interfaces │ │ │ ├── ICsvFileBuilder.cs │ │ │ ├── ICurrentUserService.cs │ │ │ ├── INorthwindDbContext.cs │ │ │ ├── INotificationService.cs │ │ │ └── IUserManager.cs │ │ ├── Mappings │ │ │ ├── IMapFrom.cs │ │ │ └── MappingProfile.cs │ │ └── Models │ │ │ └── Result.cs │ ├── Customers │ │ ├── Commands │ │ │ ├── CreateCustomer │ │ │ │ ├── CreateCustomerCommand.cs │ │ │ │ ├── CreateCustomerCommandValidator.cs │ │ │ │ └── CustomerCreated.cs │ │ │ ├── DeleteCustomer │ │ │ │ ├── DeleteCustomerCommand.cs │ │ │ │ ├── DeleteCustomerCommandHandler.cs │ │ │ │ └── DeleteCustomerCommandValidator.cs │ │ │ └── UpdateCustomer │ │ │ │ ├── UpdateCustomerCommand.cs │ │ │ │ └── UpdateCustomerCommandValidator.cs │ │ └── Queries │ │ │ ├── GetCustomerDetail │ │ │ ├── CustomerDetailVm.cs │ │ │ ├── GetCustomerDetailQuery.cs │ │ │ ├── GetCustomerDetailQueryHandler.cs │ │ │ └── GetCustomerDetailQueryValidator.cs │ │ │ └── GetCustomersList │ │ │ ├── CustomerLookupDto.cs │ │ │ ├── CustomersListVm.cs │ │ │ ├── GetCustomersListQuery.cs │ │ │ └── GetCustomersListQueryHandler.cs │ ├── DependencyInjection.cs │ ├── Employees │ │ ├── Commands │ │ │ ├── DeleteEmployee │ │ │ │ └── DeleteEmployeeCommand.cs │ │ │ └── UpsertEmployee │ │ │ │ └── UpsertEmployeeCommand.cs │ │ └── Queries │ │ │ ├── GetEmployeeDetail │ │ │ ├── EmployeeDetailVm.cs │ │ │ ├── EmployeeTerritoryDto.cs │ │ │ └── GetEmployeeDetailQuery.cs │ │ │ └── GetEmployeesList │ │ │ ├── EmployeeLookupDto.cs │ │ │ ├── EmployeesListVm.cs │ │ │ └── GetEmployeesListQuery.cs │ ├── Notifications │ │ └── Models │ │ │ └── MessageDto.cs │ ├── Products │ │ ├── Commands │ │ │ ├── CreateProduct │ │ │ │ ├── CreateProductCommand.cs │ │ │ │ └── CreateProductCommandHandler.cs │ │ │ ├── DeleteProduct │ │ │ │ ├── DeleteProductCommand.cs │ │ │ │ └── DeleteProductCommandHandler.cs │ │ │ └── UpdateProduct │ │ │ │ ├── UpdateProductCommand.cs │ │ │ │ └── UpdateProductCommandHandler.cs │ │ └── Queries │ │ │ ├── GetProductDetail │ │ │ ├── GetProductDetailQuery.cs │ │ │ ├── GetProductDetailQueryHandler.cs │ │ │ └── ProductDetailVm.cs │ │ │ ├── GetProductsFile │ │ │ ├── GetProductsFileQuery.cs │ │ │ ├── GetProductsFileQueryHandler.cs │ │ │ ├── ProductRecordDto.cs │ │ │ └── ProductsFileVm.cs │ │ │ └── GetProductsList │ │ │ ├── GetProductsListQuery.cs │ │ │ ├── GetProductsListQueryHandler.cs │ │ │ ├── ProductDto.cs │ │ │ └── ProductsListVm.cs │ ├── README.md │ └── System │ │ └── Commands │ │ └── SeedSampleData │ │ ├── SampleDataSeeder.cs │ │ └── SeedSampleDataCommand.cs ├── Common │ ├── Common.csproj │ ├── IDateTime.cs │ └── README.md ├── Domain │ ├── Common │ │ ├── AuditableEntity.cs │ │ └── ValueObject.cs │ ├── Domain.csproj │ ├── Entities │ │ ├── Category.cs │ │ ├── Customer.cs │ │ ├── Employee.cs │ │ ├── EmployeeTerritory.cs │ │ ├── Order.cs │ │ ├── OrderDetail.cs │ │ ├── Product.cs │ │ ├── Region.cs │ │ ├── Shipper.cs │ │ ├── Supplier.cs │ │ └── Territory.cs │ ├── Exceptions │ │ └── AdAccountInvalidException.cs │ ├── README.md │ └── ValueObjects │ │ └── AdAccount.cs ├── Infrastructure │ ├── DependencyInjection.cs │ ├── Files │ │ ├── CsvFileBuilder.cs │ │ └── ProductFileRecordMap.cs │ ├── Identity │ │ ├── ApplicationDbContext.cs │ │ ├── ApplicationUser.cs │ │ ├── IdentityResultExtensions.cs │ │ ├── Migrations │ │ │ ├── 20190905003230_CreateIdentitySchema.Designer.cs │ │ │ ├── 20190905003230_CreateIdentitySchema.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ └── UserManagerService.cs │ ├── Infrastructure.csproj │ ├── MachineDateTime.cs │ ├── NotificationService.cs │ └── README.md ├── Persistence │ ├── Configurations │ │ ├── CategoryConfiguration.cs │ │ ├── CustomerConfiguration.cs │ │ ├── EmployeeConfiguration.cs │ │ ├── EmployeeTerritoryConfiguration.cs │ │ ├── OrderConfiguration.cs │ │ ├── OrderDetailConfiguration.cs │ │ ├── ProductConfiguration.cs │ │ ├── RegionConfiguration.cs │ │ ├── ShipperConfiguration.cs │ │ ├── SupplierConfiguration.cs │ │ └── TerritoryConfiguration.cs │ ├── DependencyInjection.cs │ ├── DesignTimeDbContextFactoryBase.cs │ ├── Migrations │ │ ├── 20180607065932_InitialCreate.Designer.cs │ │ ├── 20180607065932_InitialCreate.cs │ │ ├── 20190916013737_AddingAuditableEntities.Designer.cs │ │ ├── 20190916013737_AddingAuditableEntities.cs │ │ ├── 20190916021407_SimplifyEntityConfigurations.Designer.cs │ │ ├── 20190916021407_SimplifyEntityConfigurations.cs │ │ ├── 20190916050546_EmployeeUserIds.Designer.cs │ │ ├── 20190916050546_EmployeeUserIds.cs │ │ └── NorthwindContextModelSnapshot.cs │ ├── NorthwindDbContext.cs │ ├── NorthwindDbContextFactory.cs │ └── Persistence.csproj └── WebUI │ ├── Areas │ └── Identity │ │ ├── IdentityHostingStartup.cs │ │ └── Pages │ │ ├── Account │ │ ├── Login.cshtml │ │ ├── Login.cshtml.cs │ │ ├── Register.cshtml │ │ ├── Register.cshtml.cs │ │ └── _ViewImports.cshtml │ │ ├── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── ClientApp │ ├── .editorconfig │ ├── .gitignore │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.e2e.json │ ├── nswag.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── api-authorization │ │ │ ├── api-authorization.constants.ts │ │ │ ├── api-authorization.module.spec.ts │ │ │ ├── api-authorization.module.ts │ │ │ ├── authorize.guard.spec.ts │ │ │ ├── authorize.guard.ts │ │ │ ├── authorize.interceptor.spec.ts │ │ │ ├── authorize.interceptor.ts │ │ │ ├── authorize.service.spec.ts │ │ │ ├── authorize.service.ts │ │ │ ├── login-menu │ │ │ │ ├── login-menu.component.css │ │ │ │ ├── login-menu.component.html │ │ │ │ ├── login-menu.component.spec.ts │ │ │ │ └── login-menu.component.ts │ │ │ ├── login │ │ │ │ ├── login.component.css │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.spec.ts │ │ │ │ └── login.component.ts │ │ │ └── logout │ │ │ │ ├── logout.component.css │ │ │ │ ├── logout.component.html │ │ │ │ ├── logout.component.spec.ts │ │ │ │ └── logout.component.ts │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.icons.module.ts │ │ │ ├── app.module.ts │ │ │ ├── app.routing.module.ts │ │ │ ├── app.server.module.ts │ │ │ ├── customer-detail │ │ │ │ ├── customer-detail.component.html │ │ │ │ └── customer-detail.component.ts │ │ │ ├── customers │ │ │ │ ├── customers.component.html │ │ │ │ └── customers.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── nav-side-menu │ │ │ │ ├── nav-side-menu.component.html │ │ │ │ └── nav-side-menu.component.ts │ │ │ ├── nav-top-menu │ │ │ │ ├── nav-top-menu.component.html │ │ │ │ └── nav-top-menu.component.ts │ │ │ ├── northwind-traders-api.ts │ │ │ └── products │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── karma.conf.js │ │ ├── main.ts │ │ ├── pipes │ │ │ └── camel-case-to-text.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.server.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ ├── tsconfig.json │ └── tslint.json │ ├── Common │ └── CustomExceptionHandlerMiddleware.cs │ ├── Controllers │ ├── BaseController.cs │ ├── CategoriesController.cs │ ├── CustomersController.cs │ ├── EmployeesController.cs │ ├── OidcConfigurationController.cs │ └── ProductsController.cs │ ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Shared │ │ ├── _CookieConsentPartial.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LoginPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ └── CurrentUserService.cs │ ├── Startup.cs │ ├── WebUI.csproj │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ ├── appsettings.Test.json │ ├── appsettings.json │ ├── nswag.json │ └── wwwroot │ ├── api │ └── specification.json │ └── favicon.ico ├── Tests ├── Application.UnitTests │ ├── Application.UnitTests.csproj │ ├── Common │ │ ├── CommandTestBase.cs │ │ ├── NorthwindContextFactory.cs │ │ └── QueryTestFixture.cs │ ├── Customers │ │ ├── Commands │ │ │ ├── CreateCustomer │ │ │ │ └── CreateCustomerCommandTests.cs │ │ │ └── DeleteCustomer │ │ │ │ └── DeleteCustomerCommandTests.cs │ │ └── Queries │ │ │ ├── GetCustomerDetailQueryHandlerTests.cs │ │ │ └── GetCustomersListQueryHandlerTests.cs │ └── Mappings │ │ ├── MappingTests.cs │ │ └── MappingTestsFixture.cs ├── Domain.UnitTests │ ├── Common │ │ └── ValueObjectTests.cs │ ├── Domain.UnitTests.csproj │ └── ValueObjects │ │ └── AdAccountTests.cs ├── Persistence.IntegrationTests │ ├── NorthwindDbContextTests.cs │ └── Persistence.IntegrationTests.csproj └── WebUI.IntegrationTests │ ├── Common │ ├── CustomWebApplicationFactory.cs │ └── Utilities.cs │ ├── Controllers │ ├── Categories │ │ └── GetCategoryList.cs │ ├── Customers │ │ ├── Create.cs │ │ ├── Delete.cs │ │ ├── GetAll.cs │ │ ├── GetById.cs │ │ └── Update.cs │ └── Products │ │ ├── Create.cs │ │ ├── Delete.cs │ │ ├── GetAll.cs │ │ ├── GetById.cs │ │ └── Update.cs │ ├── Properties │ └── launchSettings.json │ └── WebUI.IntegrationTests.csproj ├── azure-pipelines.yml └── global.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/.gitignore -------------------------------------------------------------------------------- /Docs/Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Docs/Slides.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/LICENSE -------------------------------------------------------------------------------- /Northwind.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Northwind.sln -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/README.md -------------------------------------------------------------------------------- /Src/Application/Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Application.csproj -------------------------------------------------------------------------------- /Src/Application/Categories/Commands/DeleteCategory/DeleteCategoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Categories/Commands/DeleteCategory/DeleteCategoryCommand.cs -------------------------------------------------------------------------------- /Src/Application/Categories/Commands/UpsertCategory/UpsertCategoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Categories/Commands/UpsertCategory/UpsertCategoryCommand.cs -------------------------------------------------------------------------------- /Src/Application/Categories/Queries/GetCategoriesList/CategoriesListVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Categories/Queries/GetCategoriesList/CategoriesListVm.cs -------------------------------------------------------------------------------- /Src/Application/Categories/Queries/GetCategoriesList/CategoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Categories/Queries/GetCategoriesList/CategoryDto.cs -------------------------------------------------------------------------------- /Src/Application/Categories/Queries/GetCategoriesList/GetCategoriesListQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Categories/Queries/GetCategoriesList/GetCategoriesListQuery.cs -------------------------------------------------------------------------------- /Src/Application/Categories/Queries/GetCategoriesList/GetCategoriesListQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Categories/Queries/GetCategoriesList/GetCategoriesListQueryHandler.cs -------------------------------------------------------------------------------- /Src/Application/Common/Behaviours/RequestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Common/Behaviours/RequestLogger.cs -------------------------------------------------------------------------------- /Src/Application/Common/Behaviours/RequestPerformanceBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Common/Behaviours/RequestPerformanceBehaviour.cs -------------------------------------------------------------------------------- /Src/Application/Common/Behaviours/RequestValidationBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Common/Behaviours/RequestValidationBehavior.cs -------------------------------------------------------------------------------- /Src/Application/Common/Exceptions/BadRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Common/Exceptions/BadRequestException.cs -------------------------------------------------------------------------------- /Src/Application/Common/Exceptions/DeleteFailureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Common/Exceptions/DeleteFailureException.cs -------------------------------------------------------------------------------- /Src/Application/Common/Exceptions/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Common/Exceptions/NotFoundException.cs -------------------------------------------------------------------------------- /Src/Application/Common/Exceptions/ValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Common/Exceptions/ValidationException.cs -------------------------------------------------------------------------------- /Src/Application/Common/Interfaces/ICsvFileBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Common/Interfaces/ICsvFileBuilder.cs -------------------------------------------------------------------------------- /Src/Application/Common/Interfaces/ICurrentUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Common/Interfaces/ICurrentUserService.cs -------------------------------------------------------------------------------- /Src/Application/Common/Interfaces/INorthwindDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Common/Interfaces/INorthwindDbContext.cs -------------------------------------------------------------------------------- /Src/Application/Common/Interfaces/INotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Common/Interfaces/INotificationService.cs -------------------------------------------------------------------------------- /Src/Application/Common/Interfaces/IUserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Common/Interfaces/IUserManager.cs -------------------------------------------------------------------------------- /Src/Application/Common/Mappings/IMapFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Common/Mappings/IMapFrom.cs -------------------------------------------------------------------------------- /Src/Application/Common/Mappings/MappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Common/Mappings/MappingProfile.cs -------------------------------------------------------------------------------- /Src/Application/Common/Models/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Common/Models/Result.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Commands/CreateCustomer/CreateCustomerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Commands/CreateCustomer/CreateCustomerCommand.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Commands/CreateCustomer/CreateCustomerCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Commands/CreateCustomer/CreateCustomerCommandValidator.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Commands/CreateCustomer/CustomerCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Commands/CreateCustomer/CustomerCreated.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Commands/DeleteCustomer/DeleteCustomerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Commands/DeleteCustomer/DeleteCustomerCommand.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Commands/DeleteCustomer/DeleteCustomerCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Commands/DeleteCustomer/DeleteCustomerCommandHandler.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Commands/DeleteCustomer/DeleteCustomerCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Commands/DeleteCustomer/DeleteCustomerCommandValidator.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Commands/UpdateCustomer/UpdateCustomerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Commands/UpdateCustomer/UpdateCustomerCommand.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Commands/UpdateCustomer/UpdateCustomerCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Commands/UpdateCustomer/UpdateCustomerCommandValidator.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Queries/GetCustomerDetail/CustomerDetailVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Queries/GetCustomerDetail/CustomerDetailVm.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Queries/GetCustomerDetail/GetCustomerDetailQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Queries/GetCustomerDetail/GetCustomerDetailQuery.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Queries/GetCustomerDetail/GetCustomerDetailQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Queries/GetCustomerDetail/GetCustomerDetailQueryHandler.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Queries/GetCustomerDetail/GetCustomerDetailQueryValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Queries/GetCustomerDetail/GetCustomerDetailQueryValidator.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Queries/GetCustomersList/CustomerLookupDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Queries/GetCustomersList/CustomerLookupDto.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Queries/GetCustomersList/CustomersListVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Queries/GetCustomersList/CustomersListVm.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Queries/GetCustomersList/GetCustomersListQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Queries/GetCustomersList/GetCustomersListQuery.cs -------------------------------------------------------------------------------- /Src/Application/Customers/Queries/GetCustomersList/GetCustomersListQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Customers/Queries/GetCustomersList/GetCustomersListQueryHandler.cs -------------------------------------------------------------------------------- /Src/Application/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/DependencyInjection.cs -------------------------------------------------------------------------------- /Src/Application/Employees/Commands/DeleteEmployee/DeleteEmployeeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Employees/Commands/DeleteEmployee/DeleteEmployeeCommand.cs -------------------------------------------------------------------------------- /Src/Application/Employees/Commands/UpsertEmployee/UpsertEmployeeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Employees/Commands/UpsertEmployee/UpsertEmployeeCommand.cs -------------------------------------------------------------------------------- /Src/Application/Employees/Queries/GetEmployeeDetail/EmployeeDetailVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Employees/Queries/GetEmployeeDetail/EmployeeDetailVm.cs -------------------------------------------------------------------------------- /Src/Application/Employees/Queries/GetEmployeeDetail/EmployeeTerritoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Employees/Queries/GetEmployeeDetail/EmployeeTerritoryDto.cs -------------------------------------------------------------------------------- /Src/Application/Employees/Queries/GetEmployeeDetail/GetEmployeeDetailQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Employees/Queries/GetEmployeeDetail/GetEmployeeDetailQuery.cs -------------------------------------------------------------------------------- /Src/Application/Employees/Queries/GetEmployeesList/EmployeeLookupDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Employees/Queries/GetEmployeesList/EmployeeLookupDto.cs -------------------------------------------------------------------------------- /Src/Application/Employees/Queries/GetEmployeesList/EmployeesListVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Employees/Queries/GetEmployeesList/EmployeesListVm.cs -------------------------------------------------------------------------------- /Src/Application/Employees/Queries/GetEmployeesList/GetEmployeesListQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Employees/Queries/GetEmployeesList/GetEmployeesListQuery.cs -------------------------------------------------------------------------------- /Src/Application/Notifications/Models/MessageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Notifications/Models/MessageDto.cs -------------------------------------------------------------------------------- /Src/Application/Products/Commands/CreateProduct/CreateProductCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Commands/CreateProduct/CreateProductCommand.cs -------------------------------------------------------------------------------- /Src/Application/Products/Commands/CreateProduct/CreateProductCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Commands/CreateProduct/CreateProductCommandHandler.cs -------------------------------------------------------------------------------- /Src/Application/Products/Commands/DeleteProduct/DeleteProductCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Commands/DeleteProduct/DeleteProductCommand.cs -------------------------------------------------------------------------------- /Src/Application/Products/Commands/DeleteProduct/DeleteProductCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Commands/DeleteProduct/DeleteProductCommandHandler.cs -------------------------------------------------------------------------------- /Src/Application/Products/Commands/UpdateProduct/UpdateProductCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Commands/UpdateProduct/UpdateProductCommand.cs -------------------------------------------------------------------------------- /Src/Application/Products/Commands/UpdateProduct/UpdateProductCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Commands/UpdateProduct/UpdateProductCommandHandler.cs -------------------------------------------------------------------------------- /Src/Application/Products/Queries/GetProductDetail/GetProductDetailQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Queries/GetProductDetail/GetProductDetailQuery.cs -------------------------------------------------------------------------------- /Src/Application/Products/Queries/GetProductDetail/GetProductDetailQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Queries/GetProductDetail/GetProductDetailQueryHandler.cs -------------------------------------------------------------------------------- /Src/Application/Products/Queries/GetProductDetail/ProductDetailVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Queries/GetProductDetail/ProductDetailVm.cs -------------------------------------------------------------------------------- /Src/Application/Products/Queries/GetProductsFile/GetProductsFileQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Queries/GetProductsFile/GetProductsFileQuery.cs -------------------------------------------------------------------------------- /Src/Application/Products/Queries/GetProductsFile/GetProductsFileQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Queries/GetProductsFile/GetProductsFileQueryHandler.cs -------------------------------------------------------------------------------- /Src/Application/Products/Queries/GetProductsFile/ProductRecordDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Queries/GetProductsFile/ProductRecordDto.cs -------------------------------------------------------------------------------- /Src/Application/Products/Queries/GetProductsFile/ProductsFileVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Queries/GetProductsFile/ProductsFileVm.cs -------------------------------------------------------------------------------- /Src/Application/Products/Queries/GetProductsList/GetProductsListQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Queries/GetProductsList/GetProductsListQuery.cs -------------------------------------------------------------------------------- /Src/Application/Products/Queries/GetProductsList/GetProductsListQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Queries/GetProductsList/GetProductsListQueryHandler.cs -------------------------------------------------------------------------------- /Src/Application/Products/Queries/GetProductsList/ProductDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Queries/GetProductsList/ProductDto.cs -------------------------------------------------------------------------------- /Src/Application/Products/Queries/GetProductsList/ProductsListVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/Products/Queries/GetProductsList/ProductsListVm.cs -------------------------------------------------------------------------------- /Src/Application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/README.md -------------------------------------------------------------------------------- /Src/Application/System/Commands/SeedSampleData/SampleDataSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/System/Commands/SeedSampleData/SampleDataSeeder.cs -------------------------------------------------------------------------------- /Src/Application/System/Commands/SeedSampleData/SeedSampleDataCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Application/System/Commands/SeedSampleData/SeedSampleDataCommand.cs -------------------------------------------------------------------------------- /Src/Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Common/Common.csproj -------------------------------------------------------------------------------- /Src/Common/IDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Common/IDateTime.cs -------------------------------------------------------------------------------- /Src/Common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Common/README.md -------------------------------------------------------------------------------- /Src/Domain/Common/AuditableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/Common/AuditableEntity.cs -------------------------------------------------------------------------------- /Src/Domain/Common/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/Common/ValueObject.cs -------------------------------------------------------------------------------- /Src/Domain/Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/Domain.csproj -------------------------------------------------------------------------------- /Src/Domain/Entities/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/Entities/Category.cs -------------------------------------------------------------------------------- /Src/Domain/Entities/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/Entities/Customer.cs -------------------------------------------------------------------------------- /Src/Domain/Entities/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/Entities/Employee.cs -------------------------------------------------------------------------------- /Src/Domain/Entities/EmployeeTerritory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/Entities/EmployeeTerritory.cs -------------------------------------------------------------------------------- /Src/Domain/Entities/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/Entities/Order.cs -------------------------------------------------------------------------------- /Src/Domain/Entities/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/Entities/OrderDetail.cs -------------------------------------------------------------------------------- /Src/Domain/Entities/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/Entities/Product.cs -------------------------------------------------------------------------------- /Src/Domain/Entities/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/Entities/Region.cs -------------------------------------------------------------------------------- /Src/Domain/Entities/Shipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/Entities/Shipper.cs -------------------------------------------------------------------------------- /Src/Domain/Entities/Supplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/Entities/Supplier.cs -------------------------------------------------------------------------------- /Src/Domain/Entities/Territory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/Entities/Territory.cs -------------------------------------------------------------------------------- /Src/Domain/Exceptions/AdAccountInvalidException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/Exceptions/AdAccountInvalidException.cs -------------------------------------------------------------------------------- /Src/Domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/README.md -------------------------------------------------------------------------------- /Src/Domain/ValueObjects/AdAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Domain/ValueObjects/AdAccount.cs -------------------------------------------------------------------------------- /Src/Infrastructure/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Infrastructure/DependencyInjection.cs -------------------------------------------------------------------------------- /Src/Infrastructure/Files/CsvFileBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Infrastructure/Files/CsvFileBuilder.cs -------------------------------------------------------------------------------- /Src/Infrastructure/Files/ProductFileRecordMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Infrastructure/Files/ProductFileRecordMap.cs -------------------------------------------------------------------------------- /Src/Infrastructure/Identity/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Infrastructure/Identity/ApplicationDbContext.cs -------------------------------------------------------------------------------- /Src/Infrastructure/Identity/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Infrastructure/Identity/ApplicationUser.cs -------------------------------------------------------------------------------- /Src/Infrastructure/Identity/IdentityResultExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Infrastructure/Identity/IdentityResultExtensions.cs -------------------------------------------------------------------------------- /Src/Infrastructure/Identity/Migrations/20190905003230_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Infrastructure/Identity/Migrations/20190905003230_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /Src/Infrastructure/Identity/Migrations/20190905003230_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Infrastructure/Identity/Migrations/20190905003230_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /Src/Infrastructure/Identity/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Infrastructure/Identity/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Src/Infrastructure/Identity/UserManagerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Infrastructure/Identity/UserManagerService.cs -------------------------------------------------------------------------------- /Src/Infrastructure/Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Infrastructure/Infrastructure.csproj -------------------------------------------------------------------------------- /Src/Infrastructure/MachineDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Infrastructure/MachineDateTime.cs -------------------------------------------------------------------------------- /Src/Infrastructure/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Infrastructure/NotificationService.cs -------------------------------------------------------------------------------- /Src/Infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Infrastructure/README.md -------------------------------------------------------------------------------- /Src/Persistence/Configurations/CategoryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Configurations/CategoryConfiguration.cs -------------------------------------------------------------------------------- /Src/Persistence/Configurations/CustomerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Configurations/CustomerConfiguration.cs -------------------------------------------------------------------------------- /Src/Persistence/Configurations/EmployeeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Configurations/EmployeeConfiguration.cs -------------------------------------------------------------------------------- /Src/Persistence/Configurations/EmployeeTerritoryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Configurations/EmployeeTerritoryConfiguration.cs -------------------------------------------------------------------------------- /Src/Persistence/Configurations/OrderConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Configurations/OrderConfiguration.cs -------------------------------------------------------------------------------- /Src/Persistence/Configurations/OrderDetailConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Configurations/OrderDetailConfiguration.cs -------------------------------------------------------------------------------- /Src/Persistence/Configurations/ProductConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Configurations/ProductConfiguration.cs -------------------------------------------------------------------------------- /Src/Persistence/Configurations/RegionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Configurations/RegionConfiguration.cs -------------------------------------------------------------------------------- /Src/Persistence/Configurations/ShipperConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Configurations/ShipperConfiguration.cs -------------------------------------------------------------------------------- /Src/Persistence/Configurations/SupplierConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Configurations/SupplierConfiguration.cs -------------------------------------------------------------------------------- /Src/Persistence/Configurations/TerritoryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Configurations/TerritoryConfiguration.cs -------------------------------------------------------------------------------- /Src/Persistence/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/DependencyInjection.cs -------------------------------------------------------------------------------- /Src/Persistence/DesignTimeDbContextFactoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/DesignTimeDbContextFactoryBase.cs -------------------------------------------------------------------------------- /Src/Persistence/Migrations/20180607065932_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Migrations/20180607065932_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /Src/Persistence/Migrations/20180607065932_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Migrations/20180607065932_InitialCreate.cs -------------------------------------------------------------------------------- /Src/Persistence/Migrations/20190916013737_AddingAuditableEntities.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Migrations/20190916013737_AddingAuditableEntities.Designer.cs -------------------------------------------------------------------------------- /Src/Persistence/Migrations/20190916013737_AddingAuditableEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Migrations/20190916013737_AddingAuditableEntities.cs -------------------------------------------------------------------------------- /Src/Persistence/Migrations/20190916021407_SimplifyEntityConfigurations.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Migrations/20190916021407_SimplifyEntityConfigurations.Designer.cs -------------------------------------------------------------------------------- /Src/Persistence/Migrations/20190916021407_SimplifyEntityConfigurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Migrations/20190916021407_SimplifyEntityConfigurations.cs -------------------------------------------------------------------------------- /Src/Persistence/Migrations/20190916050546_EmployeeUserIds.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Migrations/20190916050546_EmployeeUserIds.Designer.cs -------------------------------------------------------------------------------- /Src/Persistence/Migrations/20190916050546_EmployeeUserIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Migrations/20190916050546_EmployeeUserIds.cs -------------------------------------------------------------------------------- /Src/Persistence/Migrations/NorthwindContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Migrations/NorthwindContextModelSnapshot.cs -------------------------------------------------------------------------------- /Src/Persistence/NorthwindDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/NorthwindDbContext.cs -------------------------------------------------------------------------------- /Src/Persistence/NorthwindDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/NorthwindDbContextFactory.cs -------------------------------------------------------------------------------- /Src/Persistence/Persistence.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/Persistence/Persistence.csproj -------------------------------------------------------------------------------- /Src/WebUI/Areas/Identity/IdentityHostingStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Areas/Identity/IdentityHostingStartup.cs -------------------------------------------------------------------------------- /Src/WebUI/Areas/Identity/Pages/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Areas/Identity/Pages/Account/Login.cshtml -------------------------------------------------------------------------------- /Src/WebUI/Areas/Identity/Pages/Account/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Areas/Identity/Pages/Account/Login.cshtml.cs -------------------------------------------------------------------------------- /Src/WebUI/Areas/Identity/Pages/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Areas/Identity/Pages/Account/Register.cshtml -------------------------------------------------------------------------------- /Src/WebUI/Areas/Identity/Pages/Account/Register.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Areas/Identity/Pages/Account/Register.cshtml.cs -------------------------------------------------------------------------------- /Src/WebUI/Areas/Identity/Pages/Account/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using Northwind.WebUI.Areas.Identity.Pages.Account -------------------------------------------------------------------------------- /Src/WebUI/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Src/WebUI/Areas/Identity/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Areas/Identity/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Src/WebUI/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/.editorconfig -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/.gitignore -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/angular.json -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/browserslist -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/nswag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/nswag.json -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/package.json -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/api-authorization.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/api-authorization.constants.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/api-authorization.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/api-authorization.module.spec.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/api-authorization.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/api-authorization.module.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/authorize.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/authorize.guard.spec.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/authorize.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/authorize.guard.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/authorize.interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/authorize.interceptor.spec.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/authorize.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/authorize.interceptor.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/authorize.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/authorize.service.spec.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/authorize.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/authorize.service.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/login-menu/login-menu.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/login-menu/login-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/login-menu/login-menu.component.html -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/login-menu/login-menu.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/login-menu/login-menu.component.spec.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/login-menu/login-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/login-menu/login-menu.component.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/login/login.component.html: -------------------------------------------------------------------------------- 1 |
{{ message | async }}
-------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/login/login.component.spec.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/login/login.component.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/logout/logout.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/logout/logout.component.html: -------------------------------------------------------------------------------- 1 |{{ message | async }}
-------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/logout/logout.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/logout/logout.component.spec.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/api-authorization/logout/logout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/api-authorization/logout/logout.component.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/app.icons.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/app.icons.module.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/app.module.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/app.routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/app.routing.module.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/app.server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/app.server.module.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/customer-detail/customer-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/customer-detail/customer-detail.component.html -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/customer-detail/customer-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/customer-detail/customer-detail.component.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/customers/customers.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/customers/customers.component.html -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/customers/customers.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/customers/customers.component.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/home/home.component.css -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/home/home.component.html -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/home/home.component.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/nav-side-menu/nav-side-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/nav-side-menu/nav-side-menu.component.html -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/nav-side-menu/nav-side-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/nav-side-menu/nav-side-menu.component.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/nav-top-menu/nav-top-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/nav-top-menu/nav-top-menu.component.html -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/nav-top-menu/nav-top-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/nav-top-menu/nav-top-menu.component.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/northwind-traders-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/northwind-traders-api.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/products/products.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/products/products.component.html -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/app/products/products.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/app/products/products.component.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/environments/environment.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/index.html -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/karma.conf.js -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/main.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/pipes/camel-case-to-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/pipes/camel-case-to-text.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/polyfills.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/styles.css -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/test.ts -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/tsconfig.app.json -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/tsconfig.server.json -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/tsconfig.spec.json -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/src/tslint.json -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /Src/WebUI/ClientApp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/ClientApp/tslint.json -------------------------------------------------------------------------------- /Src/WebUI/Common/CustomExceptionHandlerMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Common/CustomExceptionHandlerMiddleware.cs -------------------------------------------------------------------------------- /Src/WebUI/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Controllers/BaseController.cs -------------------------------------------------------------------------------- /Src/WebUI/Controllers/CategoriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Controllers/CategoriesController.cs -------------------------------------------------------------------------------- /Src/WebUI/Controllers/CustomersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Controllers/CustomersController.cs -------------------------------------------------------------------------------- /Src/WebUI/Controllers/EmployeesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Controllers/EmployeesController.cs -------------------------------------------------------------------------------- /Src/WebUI/Controllers/OidcConfigurationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Controllers/OidcConfigurationController.cs -------------------------------------------------------------------------------- /Src/WebUI/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /Src/WebUI/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Pages/Error.cshtml -------------------------------------------------------------------------------- /Src/WebUI/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Src/WebUI/Pages/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Pages/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /Src/WebUI/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Src/WebUI/Pages/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Pages/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /Src/WebUI/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Src/WebUI/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Src/WebUI/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Src/WebUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Program.cs -------------------------------------------------------------------------------- /Src/WebUI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Properties/launchSettings.json -------------------------------------------------------------------------------- /Src/WebUI/Services/CurrentUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Services/CurrentUserService.cs -------------------------------------------------------------------------------- /Src/WebUI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/Startup.cs -------------------------------------------------------------------------------- /Src/WebUI/WebUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/WebUI.csproj -------------------------------------------------------------------------------- /Src/WebUI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/appsettings.Development.json -------------------------------------------------------------------------------- /Src/WebUI/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/appsettings.Production.json -------------------------------------------------------------------------------- /Src/WebUI/appsettings.Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/appsettings.Test.json -------------------------------------------------------------------------------- /Src/WebUI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/appsettings.json -------------------------------------------------------------------------------- /Src/WebUI/nswag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/nswag.json -------------------------------------------------------------------------------- /Src/WebUI/wwwroot/api/specification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/wwwroot/api/specification.json -------------------------------------------------------------------------------- /Src/WebUI/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Src/WebUI/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Tests/Application.UnitTests/Application.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/Application.UnitTests/Application.UnitTests.csproj -------------------------------------------------------------------------------- /Tests/Application.UnitTests/Common/CommandTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/Application.UnitTests/Common/CommandTestBase.cs -------------------------------------------------------------------------------- /Tests/Application.UnitTests/Common/NorthwindContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/Application.UnitTests/Common/NorthwindContextFactory.cs -------------------------------------------------------------------------------- /Tests/Application.UnitTests/Common/QueryTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/Application.UnitTests/Common/QueryTestFixture.cs -------------------------------------------------------------------------------- /Tests/Application.UnitTests/Customers/Commands/CreateCustomer/CreateCustomerCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/Application.UnitTests/Customers/Commands/CreateCustomer/CreateCustomerCommandTests.cs -------------------------------------------------------------------------------- /Tests/Application.UnitTests/Customers/Commands/DeleteCustomer/DeleteCustomerCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/Application.UnitTests/Customers/Commands/DeleteCustomer/DeleteCustomerCommandTests.cs -------------------------------------------------------------------------------- /Tests/Application.UnitTests/Customers/Queries/GetCustomerDetailQueryHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/Application.UnitTests/Customers/Queries/GetCustomerDetailQueryHandlerTests.cs -------------------------------------------------------------------------------- /Tests/Application.UnitTests/Customers/Queries/GetCustomersListQueryHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/Application.UnitTests/Customers/Queries/GetCustomersListQueryHandlerTests.cs -------------------------------------------------------------------------------- /Tests/Application.UnitTests/Mappings/MappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/Application.UnitTests/Mappings/MappingTests.cs -------------------------------------------------------------------------------- /Tests/Application.UnitTests/Mappings/MappingTestsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/Application.UnitTests/Mappings/MappingTestsFixture.cs -------------------------------------------------------------------------------- /Tests/Domain.UnitTests/Common/ValueObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/Domain.UnitTests/Common/ValueObjectTests.cs -------------------------------------------------------------------------------- /Tests/Domain.UnitTests/Domain.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/Domain.UnitTests/Domain.UnitTests.csproj -------------------------------------------------------------------------------- /Tests/Domain.UnitTests/ValueObjects/AdAccountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/Domain.UnitTests/ValueObjects/AdAccountTests.cs -------------------------------------------------------------------------------- /Tests/Persistence.IntegrationTests/NorthwindDbContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/Persistence.IntegrationTests/NorthwindDbContextTests.cs -------------------------------------------------------------------------------- /Tests/Persistence.IntegrationTests/Persistence.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/Persistence.IntegrationTests/Persistence.IntegrationTests.csproj -------------------------------------------------------------------------------- /Tests/WebUI.IntegrationTests/Common/CustomWebApplicationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/WebUI.IntegrationTests/Common/CustomWebApplicationFactory.cs -------------------------------------------------------------------------------- /Tests/WebUI.IntegrationTests/Common/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/WebUI.IntegrationTests/Common/Utilities.cs -------------------------------------------------------------------------------- /Tests/WebUI.IntegrationTests/Controllers/Categories/GetCategoryList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/WebUI.IntegrationTests/Controllers/Categories/GetCategoryList.cs -------------------------------------------------------------------------------- /Tests/WebUI.IntegrationTests/Controllers/Customers/Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/WebUI.IntegrationTests/Controllers/Customers/Create.cs -------------------------------------------------------------------------------- /Tests/WebUI.IntegrationTests/Controllers/Customers/Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/WebUI.IntegrationTests/Controllers/Customers/Delete.cs -------------------------------------------------------------------------------- /Tests/WebUI.IntegrationTests/Controllers/Customers/GetAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/WebUI.IntegrationTests/Controllers/Customers/GetAll.cs -------------------------------------------------------------------------------- /Tests/WebUI.IntegrationTests/Controllers/Customers/GetById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/WebUI.IntegrationTests/Controllers/Customers/GetById.cs -------------------------------------------------------------------------------- /Tests/WebUI.IntegrationTests/Controllers/Customers/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/WebUI.IntegrationTests/Controllers/Customers/Update.cs -------------------------------------------------------------------------------- /Tests/WebUI.IntegrationTests/Controllers/Products/Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/WebUI.IntegrationTests/Controllers/Products/Create.cs -------------------------------------------------------------------------------- /Tests/WebUI.IntegrationTests/Controllers/Products/Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/WebUI.IntegrationTests/Controllers/Products/Delete.cs -------------------------------------------------------------------------------- /Tests/WebUI.IntegrationTests/Controllers/Products/GetAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/WebUI.IntegrationTests/Controllers/Products/GetAll.cs -------------------------------------------------------------------------------- /Tests/WebUI.IntegrationTests/Controllers/Products/GetById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/WebUI.IntegrationTests/Controllers/Products/GetById.cs -------------------------------------------------------------------------------- /Tests/WebUI.IntegrationTests/Controllers/Products/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/WebUI.IntegrationTests/Controllers/Products/Update.cs -------------------------------------------------------------------------------- /Tests/WebUI.IntegrationTests/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/WebUI.IntegrationTests/Properties/launchSettings.json -------------------------------------------------------------------------------- /Tests/WebUI.IntegrationTests/WebUI.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/Tests/WebUI.IntegrationTests/WebUI.IntegrationTests.csproj -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasontaylordev/NorthwindTraders/HEAD/global.json --------------------------------------------------------------------------------