├── .dockerignore ├── .github └── workflows │ ├── sts-vm.yml-disabled │ ├── sts-win.yml │ ├── web-vm.yml-disabled │ └── web-win.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── AspNetCoreSpa.sln ├── LICENSE ├── README.md ├── app_offline.htm ├── compodoc.jpg ├── db.bat ├── deploy.azure.ps1 ├── deploy.heroku.ps1 ├── docker-compose.dcproj ├── docker-compose.override.yml ├── docker-compose.yml ├── src ├── Core │ ├── Application │ │ ├── Abstractions │ │ │ ├── IApplicationDbContext.cs │ │ │ ├── IApplicationService.cs │ │ │ ├── IClientInfoService.cs │ │ │ ├── ICsvFileBuilder.cs │ │ │ ├── ICurrentUserService.cs │ │ │ ├── IDeploymentEnvironment.cs │ │ │ ├── IEmailService.cs │ │ │ ├── ILocalizationDbContext.cs │ │ │ └── IUserManager.cs │ │ ├── Application.csproj │ │ ├── Behaviours │ │ │ ├── RequestLogger.cs │ │ │ ├── RequestPerformanceBehaviour.cs │ │ │ └── RequestValidationBehavior.cs │ │ ├── Common │ │ │ ├── Mappings │ │ │ │ ├── IMapFrom.cs │ │ │ │ └── MappingProfile.cs │ │ │ └── Models │ │ │ │ └── Result.cs │ │ ├── Exceptions │ │ │ ├── BadRequestException.cs │ │ │ ├── DeleteFailureException.cs │ │ │ ├── NotFoundException.cs │ │ │ └── ValidationException.cs │ │ ├── Extensions │ │ │ ├── ClaimExtensions.cs │ │ │ └── Options.cs │ │ ├── Features │ │ │ ├── Categories │ │ │ │ ├── Commands │ │ │ │ │ ├── DeleteCategory │ │ │ │ │ │ └── DeleteCategoryCommand.cs │ │ │ │ │ └── UpsertCategory │ │ │ │ │ │ └── UpsertCategoryCommand.cs │ │ │ │ └── Queries │ │ │ │ │ └── GetCategoriesList │ │ │ │ │ ├── CategoriesListVm.cs │ │ │ │ │ ├── CategoryDto.cs │ │ │ │ │ ├── GetCategoriesListQuery.cs │ │ │ │ │ └── GetCategoriesListQueryHandler.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 │ │ │ ├── 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 │ │ │ │ │ ├── EmailAttachement.cs │ │ │ │ │ └── EmailMessage.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 │ │ │ └── System │ │ │ │ └── Commands │ │ │ │ ├── SeedLocalizationData │ │ │ │ ├── LocalizationDataSeeder.cs │ │ │ │ └── LocalizationDataSeederCommand.cs │ │ │ │ └── SeedWebData │ │ │ │ ├── WebDataSeeder.cs │ │ │ │ └── WebDataSeederCommand.cs │ │ ├── Mappings │ │ │ ├── IMapFrom.cs │ │ │ └── MappingProfile.cs │ │ ├── MiddlewareExtensions.cs │ │ ├── Models │ │ │ ├── ApplicationDataViewModel.cs │ │ │ ├── ClientInfo.cs │ │ │ ├── CulturesDisplayViewModel.cs │ │ │ ├── EnvironmentInformation.cs │ │ │ └── Result.cs │ │ ├── ServicesExtensions.cs │ │ ├── Settings │ │ │ ├── EmailSettings.cs │ │ │ └── ReCaptcha.cs │ │ ├── sharedsettings.Development.json │ │ └── sharedsettings.json │ ├── Common │ │ ├── Common.csproj │ │ ├── Constants.cs │ │ └── IDateTime.cs │ └── Domain │ │ ├── Domain.csproj │ │ └── Entities │ │ ├── AuditableEntity.cs │ │ ├── Category.cs │ │ ├── ContactUs.cs │ │ ├── Customer.cs │ │ ├── Employee.cs │ │ ├── EmployeeTerritory.cs │ │ ├── Localization │ │ ├── Culture.cs │ │ └── Resource.cs │ │ ├── Order.cs │ │ ├── OrderDetail.cs │ │ ├── Product.cs │ │ ├── Region.cs │ │ ├── Shipper.cs │ │ ├── Supplier.cs │ │ └── Territory.cs ├── Infrastructure │ └── Infrastructure │ │ ├── Email │ │ ├── EmailService.cs │ │ └── Templates │ │ │ ├── BaseTemplate.html │ │ │ └── RegistrationTemplate.html │ │ ├── Environment │ │ └── DeploymentEnvironment.cs │ │ ├── Files │ │ ├── CsvFileBuilder.cs │ │ └── ProductFileRecordMap.cs │ │ ├── Identity │ │ ├── Entities │ │ │ ├── ApplicationRole.cs │ │ │ ├── ApplicationRoleClaim.cs │ │ │ ├── ApplicationUser.cs │ │ │ ├── ApplicationUserClaim.cs │ │ │ ├── ApplicationUserLogin.cs │ │ │ ├── ApplicationUserRole.cs │ │ │ └── ApplicationUserToken.cs │ │ ├── IdentityResultExtensions.cs │ │ ├── IdentityServerDbContext.cs │ │ └── Migrations │ │ │ ├── 20211111210542_Initial.Designer.cs │ │ │ ├── 20211111210542_Initial.cs │ │ │ └── IdentityServerDbContextModelSnapshot.cs │ │ ├── Infrastructure.csproj │ │ ├── Localization │ │ ├── EFLocalizer │ │ │ ├── EFStringLocalizer.cs │ │ │ ├── EFStringLocalizerFactory.cs │ │ │ └── EFStringLocalizerOfT.cs │ │ ├── LocalizationDbContext.cs │ │ └── Migrations │ │ │ ├── 20211111210526_Initial.Designer.cs │ │ │ ├── 20211111210526_Initial.cs │ │ │ └── LocalizationDbContextModelSnapshot.cs │ │ ├── MiddlewareExtensions.cs │ │ ├── Middlewares │ │ └── CustomExceptionHandler.cs │ │ ├── Persistence │ │ ├── ApplicationDbContext.cs │ │ ├── Configurations │ │ │ ├── CategoryConfiguration.cs │ │ │ ├── ContactUsConfiguration.cs │ │ │ ├── CustomerConfiguration.cs │ │ │ ├── EmployeeConfiguration.cs │ │ │ ├── EmployeeTerritoryConfiguration.cs │ │ │ ├── OrderConfiguration.cs │ │ │ ├── OrderDetailConfiguration.cs │ │ │ ├── ProductConfiguration.cs │ │ │ ├── RegionConfiguration.cs │ │ │ ├── ShipperConfiguration.cs │ │ │ ├── SupplierConfiguration.cs │ │ │ └── TerritoryConfiguration.cs │ │ └── Migrations │ │ │ ├── 20211111210511_Initial.Designer.cs │ │ │ ├── 20211111210511_Initial.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ ├── Services │ │ ├── Certificate │ │ │ ├── ICertificateService.cs │ │ │ └── KeyVaultCertificateService.cs │ │ ├── ClientInfoService.cs │ │ ├── CurrentUserService.cs │ │ ├── MachineDateTime.cs │ │ └── UserManagerService.cs │ │ └── ServicesExtensions.cs └── Presentation │ ├── STS │ ├── .dockerignore │ ├── Areas │ │ └── Identity │ │ │ ├── IdentityHostingStartup.cs │ │ │ └── Pages │ │ │ ├── Account │ │ │ ├── AccessDenied.cshtml │ │ │ ├── AccessDenied.cshtml.cs │ │ │ ├── ConfirmEmail.cshtml │ │ │ ├── ConfirmEmail.cshtml.cs │ │ │ ├── ConfirmEmailChange.cshtml │ │ │ ├── ConfirmEmailChange.cshtml.cs │ │ │ ├── ExternalLogin.cshtml │ │ │ ├── ExternalLogin.cshtml.cs │ │ │ ├── ForgotPassword.cshtml │ │ │ ├── ForgotPassword.cshtml.cs │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ ├── ForgotPasswordConfirmation.cshtml.cs │ │ │ ├── Lockout.cshtml │ │ │ ├── Lockout.cshtml.cs │ │ │ ├── Login.cshtml │ │ │ ├── Login.cshtml.cs │ │ │ ├── LoginWith2fa.cshtml │ │ │ ├── LoginWith2fa.cshtml.cs │ │ │ ├── LoginWithRecoveryCode.cshtml │ │ │ ├── LoginWithRecoveryCode.cshtml.cs │ │ │ ├── Logout.cshtml │ │ │ ├── Logout.cshtml.cs │ │ │ ├── Manage │ │ │ │ ├── ChangePassword.cshtml │ │ │ │ ├── ChangePassword.cshtml.cs │ │ │ │ ├── DeletePersonalData.cshtml │ │ │ │ ├── DeletePersonalData.cshtml.cs │ │ │ │ ├── Disable2fa.cshtml │ │ │ │ ├── Disable2fa.cshtml.cs │ │ │ │ ├── DownloadPersonalData.cshtml │ │ │ │ ├── DownloadPersonalData.cshtml.cs │ │ │ │ ├── Email.cshtml │ │ │ │ ├── Email.cshtml.cs │ │ │ │ ├── EnableAuthenticator.cshtml │ │ │ │ ├── EnableAuthenticator.cshtml.cs │ │ │ │ ├── ExternalLogins.cshtml │ │ │ │ ├── ExternalLogins.cshtml.cs │ │ │ │ ├── GenerateRecoveryCodes.cshtml │ │ │ │ ├── GenerateRecoveryCodes.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── ManageNavPages.cs │ │ │ │ ├── PersonalData.cshtml │ │ │ │ ├── PersonalData.cshtml.cs │ │ │ │ ├── ResetAuthenticator.cshtml │ │ │ │ ├── ResetAuthenticator.cshtml.cs │ │ │ │ ├── SetPassword.cshtml │ │ │ │ ├── SetPassword.cshtml.cs │ │ │ │ ├── ShowRecoveryCodes.cshtml │ │ │ │ ├── ShowRecoveryCodes.cshtml.cs │ │ │ │ ├── TwoFactorAuthentication.cshtml │ │ │ │ ├── TwoFactorAuthentication.cshtml.cs │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _ManageNav.cshtml │ │ │ │ ├── _StatusMessage.cshtml │ │ │ │ └── _ViewImports.cshtml │ │ │ ├── Register.cshtml │ │ │ ├── Register.cshtml.cs │ │ │ ├── RegisterConfirmation.cshtml │ │ │ ├── RegisterConfirmation.cshtml.cs │ │ │ ├── ResetPassword.cshtml │ │ │ ├── ResetPassword.cshtml.cs │ │ │ ├── ResetPasswordConfirmation.cshtml │ │ │ ├── ResetPasswordConfirmation.cshtml.cs │ │ │ ├── _StatusMessage.cshtml │ │ │ └── _ViewImports.cshtml │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ ├── Controllers │ │ ├── BaseController.cs │ │ ├── OidcConfigurationController.cs │ │ └── SetLanguageController.cs │ ├── CustomProfileService.cs │ ├── Dockerfile │ ├── Dockerfile.heroku │ ├── Filters │ │ └── SecurityHeadersAttribute.cs │ ├── Middlewares │ │ └── AdminSafeListMiddleware.cs │ ├── Pages │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Components │ │ │ │ └── ReturnLink │ │ │ │ │ └── Default.cshtml │ │ │ ├── _AppScripts.cshtml │ │ │ ├── _AppStyles.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Footer.cshtml │ │ │ ├── _Header.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LoginPartial.cshtml │ │ │ └── _SelectLanguagePartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── STS.csproj │ ├── ScaffoldingReadMe.txt │ ├── Seed │ │ ├── IIdentitySeedData.cs │ │ └── IdentitySeedData.cs │ ├── Startup.cs │ ├── TagHelpers │ │ └── IfTagHelper.cs │ ├── ViewComponents │ │ └── ReturnLinkViewComponent.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bundleconfig.json │ ├── libman.json │ ├── package-lock.json │ ├── package.json │ ├── sts_dev_cert.pfx │ ├── translations.csv │ ├── web.config │ └── wwwroot │ │ ├── _references.js │ │ ├── css │ │ ├── site.css │ │ ├── site.min.css │ │ └── vendor.min.css │ │ ├── favicon.ico │ │ ├── icon.jpg │ │ ├── icon.png │ │ └── js │ │ ├── qrcode.min.js │ │ ├── signout-redirect.js │ │ ├── site.js │ │ ├── site.min.js │ │ ├── vendor-validation.min.js │ │ └── vendor.min.js │ └── Web │ ├── .dockerignore │ ├── ClientApp │ ├── .prettierignore │ ├── .prettierrc │ ├── __mocks__ │ │ ├── MockAppService.ts │ │ ├── MockAuthService.ts │ │ └── image.js │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ └── app.e2e.ts │ ├── ngsw-config.json │ ├── package-lock.json │ ├── package.json │ ├── protractor.conf.js │ ├── src │ │ ├── app │ │ │ ├── +examples │ │ │ │ ├── examples.component.html │ │ │ │ ├── examples.component.scss │ │ │ │ ├── examples.component.ts │ │ │ │ ├── examples.module.ts │ │ │ │ ├── examples.routes.ts │ │ │ │ └── examples │ │ │ │ │ ├── forms-playground │ │ │ │ │ ├── forms-playground.component.html │ │ │ │ │ ├── forms-playground.component.scss │ │ │ │ │ └── forms-playground.component.ts │ │ │ │ │ ├── shop │ │ │ │ │ ├── customers │ │ │ │ │ │ ├── customers.component.html │ │ │ │ │ │ ├── customers.component.scss │ │ │ │ │ │ └── customers.component.ts │ │ │ │ │ ├── products │ │ │ │ │ │ ├── products.component.html │ │ │ │ │ │ ├── products.component.scss │ │ │ │ │ │ └── products.component.ts │ │ │ │ │ ├── shop.component.html │ │ │ │ │ ├── shop.component.scss │ │ │ │ │ ├── shop.component.ts │ │ │ │ │ ├── shop.module.ts │ │ │ │ │ └── shop.routes.ts │ │ │ │ │ └── signalr │ │ │ │ │ ├── chat │ │ │ │ │ ├── chat.component.html │ │ │ │ │ ├── chat.component.scss │ │ │ │ │ └── chat.component.ts │ │ │ │ │ ├── move-shape │ │ │ │ │ ├── draggable.directive.ts │ │ │ │ │ ├── move-shape.component.html │ │ │ │ │ ├── move-shape.component.scss │ │ │ │ │ └── move-shape.component.ts │ │ │ │ │ ├── signalr.component.html │ │ │ │ │ ├── signalr.component.scss │ │ │ │ │ ├── signalr.component.ts │ │ │ │ │ ├── signalr.module.ts │ │ │ │ │ └── signalr.routes.ts │ │ │ ├── __snapshots__ │ │ │ │ └── app.component.spec.ts.snap │ │ │ ├── api-client.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── app.routes.ts │ │ │ ├── components │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ ├── footer.component.scss │ │ │ │ │ ├── footer.component.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── header │ │ │ │ │ ├── header.component.html │ │ │ │ │ ├── header.component.scss │ │ │ │ │ ├── header.component.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── privacy │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── privacy.component.html │ │ │ │ │ └── privacy.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── models.ts │ │ │ └── shared │ │ │ │ ├── components │ │ │ │ ├── accordion │ │ │ │ │ ├── accordion.component.html │ │ │ │ │ ├── accordion.component.scss │ │ │ │ │ └── accordion.component.ts │ │ │ │ ├── card-deck │ │ │ │ │ ├── card-deck.component.html │ │ │ │ │ ├── card-deck.component.scss │ │ │ │ │ └── card-deck.component.ts │ │ │ │ ├── card │ │ │ │ │ ├── card.component.html │ │ │ │ │ └── card.component.ts │ │ │ │ ├── forms │ │ │ │ │ ├── components │ │ │ │ │ │ ├── field-base │ │ │ │ │ │ │ ├── field-base.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── form-button-group │ │ │ │ │ │ │ ├── form-button-group.component.html │ │ │ │ │ │ │ └── form-button-group.component.ts │ │ │ │ │ │ ├── form-button │ │ │ │ │ │ │ ├── form-button.component.html │ │ │ │ │ │ │ ├── form-button.component.scss │ │ │ │ │ │ │ └── form-button.component.ts │ │ │ │ │ │ ├── form-checkbox-list │ │ │ │ │ │ │ ├── form-checkbox-list.component.html │ │ │ │ │ │ │ ├── form-checkbox-list.component.scss │ │ │ │ │ │ │ └── form-checkbox-list.component.ts │ │ │ │ │ │ ├── form-checkbox │ │ │ │ │ │ │ ├── form-checkbox.component.html │ │ │ │ │ │ │ ├── form-checkbox.component.scss │ │ │ │ │ │ │ └── form-checkbox.component.ts │ │ │ │ │ │ ├── form-date │ │ │ │ │ │ │ ├── form-date.component.html │ │ │ │ │ │ │ ├── form-date.component.scss │ │ │ │ │ │ │ └── form-date.component.ts │ │ │ │ │ │ ├── form-field-error │ │ │ │ │ │ │ ├── form-field-error.component.html │ │ │ │ │ │ │ ├── form-field-error.component.scss │ │ │ │ │ │ │ └── form-field-error.component.ts │ │ │ │ │ │ ├── form-file-path │ │ │ │ │ │ │ ├── form-file-path.component.html │ │ │ │ │ │ │ ├── form-file-path.component.scss │ │ │ │ │ │ │ └── form-file-path.component.ts │ │ │ │ │ │ ├── form-file │ │ │ │ │ │ │ ├── file-input.directive.ts │ │ │ │ │ │ │ ├── form-file.component.html │ │ │ │ │ │ │ ├── form-file.component.scss │ │ │ │ │ │ │ └── form-file.component.ts │ │ │ │ │ │ ├── form-input-group │ │ │ │ │ │ │ ├── form-input-group.component.html │ │ │ │ │ │ │ ├── form-input-group.component.scss │ │ │ │ │ │ │ └── form-input-group.component.ts │ │ │ │ │ │ ├── form-input │ │ │ │ │ │ │ ├── form-input.component.html │ │ │ │ │ │ │ ├── form-input.component.scss │ │ │ │ │ │ │ └── form-input.component.ts │ │ │ │ │ │ ├── form-radio-list │ │ │ │ │ │ │ ├── form-radio-list.component.html │ │ │ │ │ │ │ ├── form-radio-list.component.scss │ │ │ │ │ │ │ └── form-radio-list.component.ts │ │ │ │ │ │ ├── form-select │ │ │ │ │ │ │ ├── form-select.component.html │ │ │ │ │ │ │ ├── form-select.component.scss │ │ │ │ │ │ │ └── form-select.component.ts │ │ │ │ │ │ ├── form-textarea │ │ │ │ │ │ │ ├── form-textarea.component.html │ │ │ │ │ │ │ ├── form-textarea.component.scss │ │ │ │ │ │ │ └── form-textarea.component.ts │ │ │ │ │ │ ├── form-time │ │ │ │ │ │ │ ├── form-time.component.html │ │ │ │ │ │ │ ├── form-time.component.scss │ │ │ │ │ │ │ └── form-time.component.ts │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── form.component.html │ │ │ │ │ │ │ ├── form.component.scss │ │ │ │ │ │ │ ├── form.component.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── directives │ │ │ │ │ │ ├── field-color-validation.directive.ts │ │ │ │ │ │ ├── form-field.directive.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── forms.service.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── grid │ │ │ │ │ ├── components │ │ │ │ │ │ ├── date-filter │ │ │ │ │ │ │ ├── date-filter.component.html │ │ │ │ │ │ │ ├── date-filter.component.scss │ │ │ │ │ │ │ └── date-filter.component.ts │ │ │ │ │ │ ├── dropdown-filter │ │ │ │ │ │ │ ├── dropdown-filter.component.html │ │ │ │ │ │ │ ├── dropdown-filter.component.scss │ │ │ │ │ │ │ └── dropdown-filter.component.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── grid.component.html │ │ │ │ │ ├── grid.component.scss │ │ │ │ │ ├── grid.component.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── renderers │ │ │ │ │ │ ├── action-button │ │ │ │ │ │ ├── action-button.component.html │ │ │ │ │ │ ├── action-button.component.scss │ │ │ │ │ │ └── action-button.component.ts │ │ │ │ │ │ ├── action-buttons │ │ │ │ │ │ ├── action-buttons.component.html │ │ │ │ │ │ ├── action-buttons.component.scss │ │ │ │ │ │ └── action-buttons.component.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── image-resizer │ │ │ │ │ ├── image-resizer.component.html │ │ │ │ │ ├── image-resizer.component.scss │ │ │ │ │ └── image-resizer.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── list │ │ │ │ │ ├── list.component.html │ │ │ │ │ ├── list.component.scss │ │ │ │ │ └── list.component.ts │ │ │ │ ├── loading │ │ │ │ │ ├── loading.component.html │ │ │ │ │ ├── loading.component.scss │ │ │ │ │ └── loading.component.ts │ │ │ │ ├── login-menu │ │ │ │ │ ├── login-menu.component.html │ │ │ │ │ ├── login-menu.component.scss │ │ │ │ │ └── login-menu.component.ts │ │ │ │ ├── login │ │ │ │ │ ├── login.component.css │ │ │ │ │ ├── login.component.html │ │ │ │ │ └── login.component.ts │ │ │ │ ├── logout │ │ │ │ │ ├── logout.component.css │ │ │ │ │ ├── logout.component.html │ │ │ │ │ └── logout.component.ts │ │ │ │ ├── modal │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── modal-template.directive.ts │ │ │ │ │ ├── modal.component.html │ │ │ │ │ ├── modal.component.scss │ │ │ │ │ └── modal.component.ts │ │ │ │ ├── page-heading │ │ │ │ │ ├── page-heading.component.html │ │ │ │ │ ├── page-heading.component.scss │ │ │ │ │ └── page-heading.component.ts │ │ │ │ ├── search-input │ │ │ │ │ ├── search-input.component.html │ │ │ │ │ ├── search-input.component.scss │ │ │ │ │ └── search-input.component.ts │ │ │ │ ├── toast │ │ │ │ │ ├── toast.comonent.ts │ │ │ │ │ └── toast.component.html │ │ │ │ ├── toggle-switch │ │ │ │ │ ├── toggle-switch.component.html │ │ │ │ │ ├── toggle-switch.component.scss │ │ │ │ │ └── toggle-switch.component.ts │ │ │ │ └── typeahead │ │ │ │ │ ├── typeahead.component.html │ │ │ │ │ └── typeahead.component.ts │ │ │ │ ├── constants │ │ │ │ ├── auth.constants.ts │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── models │ │ │ │ ├── accordion.ts │ │ │ │ ├── auth.ts │ │ │ │ ├── card.ts │ │ │ │ ├── forms.ts │ │ │ │ ├── grid.ts │ │ │ │ ├── index.ts │ │ │ │ ├── list.ts │ │ │ │ ├── modal.ts │ │ │ │ └── nav.ts │ │ │ │ ├── pipes │ │ │ │ ├── group-by.pipe.ts │ │ │ │ ├── index.ts │ │ │ │ ├── safe.pipe.ts │ │ │ │ ├── translate.pipe.ts │ │ │ │ ├── uppercase.pipe.spec.ts │ │ │ │ └── uppercase.pipe.ts │ │ │ │ ├── services │ │ │ │ ├── app.service.ts │ │ │ │ ├── authorize.service.ts │ │ │ │ ├── config.service.ts │ │ │ │ ├── custom-date-adapter.service.ts │ │ │ │ ├── custom-date-formatter.service.ts │ │ │ │ ├── data.service.ts │ │ │ │ ├── global-error.service.ts │ │ │ │ ├── guards │ │ │ │ │ ├── authorize.guard.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interceptors │ │ │ │ │ ├── auth.interceptor.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── jwt.interceptor.ts │ │ │ │ │ ├── loading.interceptor.ts │ │ │ │ │ └── timing.interceptor.ts │ │ │ │ ├── jwt-decode │ │ │ │ │ ├── index.ts │ │ │ │ │ └── jwthelper.service.ts │ │ │ │ ├── loading.service.ts │ │ │ │ ├── modal-state.service.ts │ │ │ │ ├── modal.service.ts │ │ │ │ ├── toast.service.ts │ │ │ │ └── utils.service.ts │ │ │ │ └── shared.module.ts │ │ ├── assets │ │ │ ├── favicon.ico │ │ │ ├── icons │ │ │ │ ├── icon-128x128.png │ │ │ │ ├── icon-144x144.png │ │ │ │ ├── icon-152x152.png │ │ │ │ ├── icon-192x192.png │ │ │ │ ├── icon-384x384.png │ │ │ │ ├── icon-512x512.png │ │ │ │ ├── icon-72x72.png │ │ │ │ └── icon-96x96.png │ │ │ ├── images │ │ │ │ ├── angular.png │ │ │ │ ├── aspnetcore.png │ │ │ │ └── email │ │ │ │ │ ├── main-image.jpg │ │ │ │ │ └── secondary-image.jpg │ │ │ └── styles │ │ │ │ ├── fonts │ │ │ │ ├── data-table.eot │ │ │ │ ├── data-table.svg │ │ │ │ ├── data-table.ttf │ │ │ │ └── data-table.woff │ │ │ │ └── icons.css │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── jestGlobalMocks.ts │ │ ├── main.ts │ │ ├── manifest.json │ │ ├── polyfills.ts │ │ ├── setupJest.ts │ │ ├── styles.scss │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json │ ├── Controllers │ ├── AppController.cs │ ├── BaseController.cs │ ├── CategoriesController.cs │ ├── CustomersController.cs │ ├── EmployeesController.cs │ └── ProductsController.cs │ ├── Dockerfile │ ├── Dockerfile.heroku │ ├── Middlewares │ └── SecurityHeaderMiddleWare.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ └── ApplicationService.cs │ ├── SignalR │ ├── ChatHub.cs │ └── ShapeHub.cs │ ├── Startup.cs │ ├── ViewModels │ ├── ContactUsVm.cs │ ├── ContentVm.cs │ └── Enums.cs │ ├── Web.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── translations.csv │ ├── web.config │ └── wwwroot │ ├── .gitkeep │ ├── api │ └── specification.json │ └── favicon.ico └── tests ├── Integration ├── CustomWebApplicationFactory.cs ├── Helpers │ ├── HtmlHelpers.cs │ ├── HttpClientExtensions.cs │ └── Utilities.cs ├── Integration.Tests.csproj ├── IntegrationTests │ └── BaseTests.cs └── Properties │ └── launchSettings.json └── Web ├── Controllers └── HomeControllerTests.cs └── Web.Tests.csproj /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/sts-vm.yml-disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/.github/workflows/sts-vm.yml-disabled -------------------------------------------------------------------------------- /.github/workflows/sts-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/.github/workflows/sts-win.yml -------------------------------------------------------------------------------- /.github/workflows/web-vm.yml-disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/.github/workflows/web-vm.yml-disabled -------------------------------------------------------------------------------- /.github/workflows/web-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/.github/workflows/web-win.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AspNetCoreSpa.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/AspNetCoreSpa.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/README.md -------------------------------------------------------------------------------- /app_offline.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/app_offline.htm -------------------------------------------------------------------------------- /compodoc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/compodoc.jpg -------------------------------------------------------------------------------- /db.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/db.bat -------------------------------------------------------------------------------- /deploy.azure.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/deploy.azure.ps1 -------------------------------------------------------------------------------- /deploy.heroku.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/deploy.heroku.ps1 -------------------------------------------------------------------------------- /docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/docker-compose.dcproj -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /src/Core/Application/Abstractions/IApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Abstractions/IApplicationDbContext.cs -------------------------------------------------------------------------------- /src/Core/Application/Abstractions/IApplicationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Abstractions/IApplicationService.cs -------------------------------------------------------------------------------- /src/Core/Application/Abstractions/IClientInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Abstractions/IClientInfoService.cs -------------------------------------------------------------------------------- /src/Core/Application/Abstractions/ICsvFileBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Abstractions/ICsvFileBuilder.cs -------------------------------------------------------------------------------- /src/Core/Application/Abstractions/ICurrentUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Abstractions/ICurrentUserService.cs -------------------------------------------------------------------------------- /src/Core/Application/Abstractions/IDeploymentEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Abstractions/IDeploymentEnvironment.cs -------------------------------------------------------------------------------- /src/Core/Application/Abstractions/IEmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Abstractions/IEmailService.cs -------------------------------------------------------------------------------- /src/Core/Application/Abstractions/ILocalizationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Abstractions/ILocalizationDbContext.cs -------------------------------------------------------------------------------- /src/Core/Application/Abstractions/IUserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Abstractions/IUserManager.cs -------------------------------------------------------------------------------- /src/Core/Application/Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Application.csproj -------------------------------------------------------------------------------- /src/Core/Application/Behaviours/RequestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Behaviours/RequestLogger.cs -------------------------------------------------------------------------------- /src/Core/Application/Behaviours/RequestPerformanceBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Behaviours/RequestPerformanceBehaviour.cs -------------------------------------------------------------------------------- /src/Core/Application/Behaviours/RequestValidationBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Behaviours/RequestValidationBehavior.cs -------------------------------------------------------------------------------- /src/Core/Application/Common/Mappings/IMapFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Common/Mappings/IMapFrom.cs -------------------------------------------------------------------------------- /src/Core/Application/Common/Mappings/MappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Common/Mappings/MappingProfile.cs -------------------------------------------------------------------------------- /src/Core/Application/Common/Models/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Common/Models/Result.cs -------------------------------------------------------------------------------- /src/Core/Application/Exceptions/BadRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Exceptions/BadRequestException.cs -------------------------------------------------------------------------------- /src/Core/Application/Exceptions/DeleteFailureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Exceptions/DeleteFailureException.cs -------------------------------------------------------------------------------- /src/Core/Application/Exceptions/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Exceptions/NotFoundException.cs -------------------------------------------------------------------------------- /src/Core/Application/Exceptions/ValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Exceptions/ValidationException.cs -------------------------------------------------------------------------------- /src/Core/Application/Extensions/ClaimExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Extensions/ClaimExtensions.cs -------------------------------------------------------------------------------- /src/Core/Application/Extensions/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Extensions/Options.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Categories/Commands/DeleteCategory/DeleteCategoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Categories/Commands/DeleteCategory/DeleteCategoryCommand.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Categories/Commands/UpsertCategory/UpsertCategoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Categories/Commands/UpsertCategory/UpsertCategoryCommand.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Categories/Queries/GetCategoriesList/CategoriesListVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Categories/Queries/GetCategoriesList/CategoriesListVm.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Categories/Queries/GetCategoriesList/CategoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Categories/Queries/GetCategoriesList/CategoryDto.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Categories/Queries/GetCategoriesList/GetCategoriesListQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Categories/Queries/GetCategoriesList/GetCategoriesListQuery.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Categories/Queries/GetCategoriesList/GetCategoriesListQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Categories/Queries/GetCategoriesList/GetCategoriesListQueryHandler.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Commands/CreateCustomer/CreateCustomerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Commands/CreateCustomer/CreateCustomerCommand.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Commands/CreateCustomer/CreateCustomerCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Commands/CreateCustomer/CreateCustomerCommandValidator.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Commands/CreateCustomer/CustomerCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Commands/CreateCustomer/CustomerCreated.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Commands/DeleteCustomer/DeleteCustomerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Commands/DeleteCustomer/DeleteCustomerCommand.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Commands/DeleteCustomer/DeleteCustomerCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Commands/DeleteCustomer/DeleteCustomerCommandHandler.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Commands/DeleteCustomer/DeleteCustomerCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Commands/DeleteCustomer/DeleteCustomerCommandValidator.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Commands/UpdateCustomer/UpdateCustomerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Commands/UpdateCustomer/UpdateCustomerCommand.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Commands/UpdateCustomer/UpdateCustomerCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Commands/UpdateCustomer/UpdateCustomerCommandValidator.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Queries/GetCustomerDetail/CustomerDetailVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Queries/GetCustomerDetail/CustomerDetailVm.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Queries/GetCustomerDetail/GetCustomerDetailQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Queries/GetCustomerDetail/GetCustomerDetailQuery.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Queries/GetCustomerDetail/GetCustomerDetailQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Queries/GetCustomerDetail/GetCustomerDetailQueryHandler.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Queries/GetCustomerDetail/GetCustomerDetailQueryValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Queries/GetCustomerDetail/GetCustomerDetailQueryValidator.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Queries/GetCustomersList/CustomerLookupDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Queries/GetCustomersList/CustomerLookupDto.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Queries/GetCustomersList/CustomersListVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Queries/GetCustomersList/CustomersListVm.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Queries/GetCustomersList/GetCustomersListQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Queries/GetCustomersList/GetCustomersListQuery.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Customers/Queries/GetCustomersList/GetCustomersListQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Customers/Queries/GetCustomersList/GetCustomersListQueryHandler.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Employees/Commands/DeleteEmployee/DeleteEmployeeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Employees/Commands/DeleteEmployee/DeleteEmployeeCommand.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Employees/Commands/UpsertEmployee/UpsertEmployeeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Employees/Commands/UpsertEmployee/UpsertEmployeeCommand.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Employees/Queries/GetEmployeeDetail/EmployeeDetailVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Employees/Queries/GetEmployeeDetail/EmployeeDetailVm.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Employees/Queries/GetEmployeeDetail/EmployeeTerritoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Employees/Queries/GetEmployeeDetail/EmployeeTerritoryDto.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Employees/Queries/GetEmployeeDetail/GetEmployeeDetailQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Employees/Queries/GetEmployeeDetail/GetEmployeeDetailQuery.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Employees/Queries/GetEmployeesList/EmployeeLookupDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Employees/Queries/GetEmployeesList/EmployeeLookupDto.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Employees/Queries/GetEmployeesList/EmployeesListVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Employees/Queries/GetEmployeesList/EmployeesListVm.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Employees/Queries/GetEmployeesList/GetEmployeesListQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Employees/Queries/GetEmployeesList/GetEmployeesListQuery.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Notifications/Models/EmailAttachement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Notifications/Models/EmailAttachement.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Notifications/Models/EmailMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Notifications/Models/EmailMessage.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Commands/CreateProduct/CreateProductCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Commands/CreateProduct/CreateProductCommand.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Commands/CreateProduct/CreateProductCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Commands/CreateProduct/CreateProductCommandHandler.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Commands/DeleteProduct/DeleteProductCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Commands/DeleteProduct/DeleteProductCommand.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Commands/DeleteProduct/DeleteProductCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Commands/DeleteProduct/DeleteProductCommandHandler.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Commands/UpdateProduct/UpdateProductCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Commands/UpdateProduct/UpdateProductCommand.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Commands/UpdateProduct/UpdateProductCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Commands/UpdateProduct/UpdateProductCommandHandler.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Queries/GetProductDetail/GetProductDetailQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Queries/GetProductDetail/GetProductDetailQuery.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Queries/GetProductDetail/GetProductDetailQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Queries/GetProductDetail/GetProductDetailQueryHandler.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Queries/GetProductDetail/ProductDetailVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Queries/GetProductDetail/ProductDetailVm.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Queries/GetProductsFile/GetProductsFileQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Queries/GetProductsFile/GetProductsFileQuery.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Queries/GetProductsFile/GetProductsFileQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Queries/GetProductsFile/GetProductsFileQueryHandler.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Queries/GetProductsFile/ProductRecordDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Queries/GetProductsFile/ProductRecordDto.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Queries/GetProductsFile/ProductsFileVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Queries/GetProductsFile/ProductsFileVm.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Queries/GetProductsList/GetProductsListQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Queries/GetProductsList/GetProductsListQuery.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Queries/GetProductsList/GetProductsListQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Queries/GetProductsList/GetProductsListQueryHandler.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Queries/GetProductsList/ProductDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Queries/GetProductsList/ProductDto.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/Products/Queries/GetProductsList/ProductsListVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/Products/Queries/GetProductsList/ProductsListVm.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/System/Commands/SeedLocalizationData/LocalizationDataSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/System/Commands/SeedLocalizationData/LocalizationDataSeeder.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/System/Commands/SeedLocalizationData/LocalizationDataSeederCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/System/Commands/SeedLocalizationData/LocalizationDataSeederCommand.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/System/Commands/SeedWebData/WebDataSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/System/Commands/SeedWebData/WebDataSeeder.cs -------------------------------------------------------------------------------- /src/Core/Application/Features/System/Commands/SeedWebData/WebDataSeederCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Features/System/Commands/SeedWebData/WebDataSeederCommand.cs -------------------------------------------------------------------------------- /src/Core/Application/Mappings/IMapFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Mappings/IMapFrom.cs -------------------------------------------------------------------------------- /src/Core/Application/Mappings/MappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Mappings/MappingProfile.cs -------------------------------------------------------------------------------- /src/Core/Application/MiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/MiddlewareExtensions.cs -------------------------------------------------------------------------------- /src/Core/Application/Models/ApplicationDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Models/ApplicationDataViewModel.cs -------------------------------------------------------------------------------- /src/Core/Application/Models/ClientInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Models/ClientInfo.cs -------------------------------------------------------------------------------- /src/Core/Application/Models/CulturesDisplayViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Models/CulturesDisplayViewModel.cs -------------------------------------------------------------------------------- /src/Core/Application/Models/EnvironmentInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Models/EnvironmentInformation.cs -------------------------------------------------------------------------------- /src/Core/Application/Models/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Models/Result.cs -------------------------------------------------------------------------------- /src/Core/Application/ServicesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/ServicesExtensions.cs -------------------------------------------------------------------------------- /src/Core/Application/Settings/EmailSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Settings/EmailSettings.cs -------------------------------------------------------------------------------- /src/Core/Application/Settings/ReCaptcha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/Settings/ReCaptcha.cs -------------------------------------------------------------------------------- /src/Core/Application/sharedsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/sharedsettings.Development.json -------------------------------------------------------------------------------- /src/Core/Application/sharedsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Application/sharedsettings.json -------------------------------------------------------------------------------- /src/Core/Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Common/Common.csproj -------------------------------------------------------------------------------- /src/Core/Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Common/Constants.cs -------------------------------------------------------------------------------- /src/Core/Common/IDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Common/IDateTime.cs -------------------------------------------------------------------------------- /src/Core/Domain/Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Domain.csproj -------------------------------------------------------------------------------- /src/Core/Domain/Entities/AuditableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Entities/AuditableEntity.cs -------------------------------------------------------------------------------- /src/Core/Domain/Entities/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Entities/Category.cs -------------------------------------------------------------------------------- /src/Core/Domain/Entities/ContactUs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Entities/ContactUs.cs -------------------------------------------------------------------------------- /src/Core/Domain/Entities/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Entities/Customer.cs -------------------------------------------------------------------------------- /src/Core/Domain/Entities/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Entities/Employee.cs -------------------------------------------------------------------------------- /src/Core/Domain/Entities/EmployeeTerritory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Entities/EmployeeTerritory.cs -------------------------------------------------------------------------------- /src/Core/Domain/Entities/Localization/Culture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Entities/Localization/Culture.cs -------------------------------------------------------------------------------- /src/Core/Domain/Entities/Localization/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Entities/Localization/Resource.cs -------------------------------------------------------------------------------- /src/Core/Domain/Entities/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Entities/Order.cs -------------------------------------------------------------------------------- /src/Core/Domain/Entities/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Entities/OrderDetail.cs -------------------------------------------------------------------------------- /src/Core/Domain/Entities/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Entities/Product.cs -------------------------------------------------------------------------------- /src/Core/Domain/Entities/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Entities/Region.cs -------------------------------------------------------------------------------- /src/Core/Domain/Entities/Shipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Entities/Shipper.cs -------------------------------------------------------------------------------- /src/Core/Domain/Entities/Supplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Entities/Supplier.cs -------------------------------------------------------------------------------- /src/Core/Domain/Entities/Territory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Core/Domain/Entities/Territory.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Email/EmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Email/EmailService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Email/Templates/BaseTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Email/Templates/BaseTemplate.html -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Email/Templates/RegistrationTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Email/Templates/RegistrationTemplate.html -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Environment/DeploymentEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Environment/DeploymentEnvironment.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Files/CsvFileBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Files/CsvFileBuilder.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Files/ProductFileRecordMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Files/ProductFileRecordMap.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Identity/Entities/ApplicationRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Identity/Entities/ApplicationRole.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Identity/Entities/ApplicationRoleClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Identity/Entities/ApplicationRoleClaim.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Identity/Entities/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Identity/Entities/ApplicationUser.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Identity/Entities/ApplicationUserClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Identity/Entities/ApplicationUserClaim.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Identity/Entities/ApplicationUserLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Identity/Entities/ApplicationUserLogin.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Identity/Entities/ApplicationUserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Identity/Entities/ApplicationUserRole.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Identity/Entities/ApplicationUserToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Identity/Entities/ApplicationUserToken.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Identity/IdentityResultExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Identity/IdentityResultExtensions.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Identity/IdentityServerDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Identity/IdentityServerDbContext.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Identity/Migrations/20211111210542_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Identity/Migrations/20211111210542_Initial.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Identity/Migrations/20211111210542_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Identity/Migrations/20211111210542_Initial.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Identity/Migrations/IdentityServerDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Identity/Migrations/IdentityServerDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Infrastructure.csproj -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Localization/EFLocalizer/EFStringLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Localization/EFLocalizer/EFStringLocalizer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Localization/EFLocalizer/EFStringLocalizerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Localization/EFLocalizer/EFStringLocalizerFactory.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Localization/EFLocalizer/EFStringLocalizerOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Localization/EFLocalizer/EFStringLocalizerOfT.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Localization/LocalizationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Localization/LocalizationDbContext.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Localization/Migrations/20211111210526_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Localization/Migrations/20211111210526_Initial.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Localization/Migrations/20211111210526_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Localization/Migrations/20211111210526_Initial.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Localization/Migrations/LocalizationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Localization/Migrations/LocalizationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/MiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/MiddlewareExtensions.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Middlewares/CustomExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Middlewares/CustomExceptionHandler.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/Configurations/CategoryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/Configurations/CategoryConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/Configurations/ContactUsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/Configurations/ContactUsConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/Configurations/CustomerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/Configurations/CustomerConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/Configurations/EmployeeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/Configurations/EmployeeConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/Configurations/EmployeeTerritoryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/Configurations/EmployeeTerritoryConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/Configurations/OrderConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/Configurations/OrderConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/Configurations/OrderDetailConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/Configurations/OrderDetailConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/Configurations/ProductConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/Configurations/ProductConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/Configurations/RegionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/Configurations/RegionConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/Configurations/ShipperConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/Configurations/ShipperConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/Configurations/SupplierConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/Configurations/SupplierConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/Configurations/TerritoryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/Configurations/TerritoryConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/Migrations/20211111210511_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/Migrations/20211111210511_Initial.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/Migrations/20211111210511_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/Migrations/20211111210511_Initial.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Persistence/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Persistence/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Services/Certificate/ICertificateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Services/Certificate/ICertificateService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Services/Certificate/KeyVaultCertificateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Services/Certificate/KeyVaultCertificateService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Services/ClientInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Services/ClientInfoService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Services/CurrentUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Services/CurrentUserService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Services/MachineDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Services/MachineDateTime.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/Services/UserManagerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/Services/UserManagerService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure/ServicesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Infrastructure/Infrastructure/ServicesExtensions.cs -------------------------------------------------------------------------------- /src/Presentation/STS/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/.dockerignore -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/IdentityHostingStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/IdentityHostingStartup.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/AccessDenied.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/AccessDenied.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/ConfirmEmail.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/ConfirmEmail.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/ConfirmEmailChange.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/ConfirmEmailChange.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/ConfirmEmailChange.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/ConfirmEmailChange.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/ExternalLogin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/ExternalLogin.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/ExternalLogin.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/ExternalLogin.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Lockout.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Lockout.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Lockout.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Login.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Login.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/LoginWith2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/LoginWith2fa.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/LoginWith2fa.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/LoginWith2fa.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Logout.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Logout.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Logout.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/Email.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/Email.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/Email.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/Email.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/Index.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ManageNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ManageNavPages.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ShowRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ShowRecoveryCodes.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ShowRecoveryCodes.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/ShowRecoveryCodes.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/_Layout.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/_ManageNav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/_ManageNav.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/_StatusMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Manage/_StatusMessage.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Manage/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using AspNetCoreSpa.STS.Areas.Identity.Pages.Account.Manage 2 | -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Register.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/Register.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/Register.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/RegisterConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/RegisterConfirmation.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/RegisterConfirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/RegisterConfirmation.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/ResetPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/ResetPassword.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/_StatusMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Account/_StatusMessage.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Account/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using AspNetCoreSpa.STS.Areas.Identity.Pages.Account -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Error.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Controllers/BaseController.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Controllers/OidcConfigurationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Controllers/OidcConfigurationController.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Controllers/SetLanguageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Controllers/SetLanguageController.cs -------------------------------------------------------------------------------- /src/Presentation/STS/CustomProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/CustomProfileService.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Dockerfile -------------------------------------------------------------------------------- /src/Presentation/STS/Dockerfile.heroku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Dockerfile.heroku -------------------------------------------------------------------------------- /src/Presentation/STS/Filters/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Filters/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Middlewares/AdminSafeListMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Middlewares/AdminSafeListMiddleware.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Pages/Index.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @{ 3 | ViewData["Title"] = "Privacy"; 4 | } 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Presentation/STS/Pages/Shared/Components/ReturnLink/Default.cshtml: -------------------------------------------------------------------------------- 1 | @Model -------------------------------------------------------------------------------- /src/Presentation/STS/Pages/Shared/_AppScripts.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Pages/Shared/_AppScripts.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Pages/Shared/_AppStyles.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Pages/Shared/_AppStyles.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Pages/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Pages/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Pages/Shared/_Footer.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Pages/Shared/_Footer.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Pages/Shared/_Header.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Pages/Shared/_Header.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Pages/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Pages/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Pages/Shared/_SelectLanguagePartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Pages/Shared/_SelectLanguagePartial.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Presentation/STS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Program.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Presentation/STS/STS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/STS.csproj -------------------------------------------------------------------------------- /src/Presentation/STS/ScaffoldingReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/ScaffoldingReadMe.txt -------------------------------------------------------------------------------- /src/Presentation/STS/Seed/IIdentitySeedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Seed/IIdentitySeedData.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Seed/IdentitySeedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Seed/IdentitySeedData.cs -------------------------------------------------------------------------------- /src/Presentation/STS/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/Startup.cs -------------------------------------------------------------------------------- /src/Presentation/STS/TagHelpers/IfTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/TagHelpers/IfTagHelper.cs -------------------------------------------------------------------------------- /src/Presentation/STS/ViewComponents/ReturnLinkViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/ViewComponents/ReturnLinkViewComponent.cs -------------------------------------------------------------------------------- /src/Presentation/STS/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/appsettings.Development.json -------------------------------------------------------------------------------- /src/Presentation/STS/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/appsettings.json -------------------------------------------------------------------------------- /src/Presentation/STS/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/bundleconfig.json -------------------------------------------------------------------------------- /src/Presentation/STS/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/libman.json -------------------------------------------------------------------------------- /src/Presentation/STS/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/package-lock.json -------------------------------------------------------------------------------- /src/Presentation/STS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/package.json -------------------------------------------------------------------------------- /src/Presentation/STS/sts_dev_cert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/sts_dev_cert.pfx -------------------------------------------------------------------------------- /src/Presentation/STS/translations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/translations.csv -------------------------------------------------------------------------------- /src/Presentation/STS/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/web.config -------------------------------------------------------------------------------- /src/Presentation/STS/wwwroot/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/wwwroot/_references.js -------------------------------------------------------------------------------- /src/Presentation/STS/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/Presentation/STS/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /src/Presentation/STS/wwwroot/css/vendor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/wwwroot/css/vendor.min.css -------------------------------------------------------------------------------- /src/Presentation/STS/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Presentation/STS/wwwroot/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/wwwroot/icon.jpg -------------------------------------------------------------------------------- /src/Presentation/STS/wwwroot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/wwwroot/icon.png -------------------------------------------------------------------------------- /src/Presentation/STS/wwwroot/js/qrcode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/wwwroot/js/qrcode.min.js -------------------------------------------------------------------------------- /src/Presentation/STS/wwwroot/js/signout-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/wwwroot/js/signout-redirect.js -------------------------------------------------------------------------------- /src/Presentation/STS/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /src/Presentation/STS/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/STS/wwwroot/js/vendor-validation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/wwwroot/js/vendor-validation.min.js -------------------------------------------------------------------------------- /src/Presentation/STS/wwwroot/js/vendor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/STS/wwwroot/js/vendor.min.js -------------------------------------------------------------------------------- /src/Presentation/Web/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/.dockerignore -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/.prettierignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | dist -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/.prettierrc -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/__mocks__/MockAppService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/__mocks__/MockAppService.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/__mocks__/MockAuthService.ts: -------------------------------------------------------------------------------- 1 | export class MockAuthService { } 2 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/__mocks__/image.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-image-stub'; 2 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/angular.json -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/browserslist -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/e2e/app.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/e2e/app.e2e.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/ngsw-config.json -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/package-lock.json -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/package.json -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/protractor.conf.js -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples.module.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples.routes.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/forms-playground/forms-playground.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/forms-playground/forms-playground.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/forms-playground/forms-playground.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/forms-playground/forms-playground.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/forms-playground/forms-playground.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/customers/customers.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/customers/customers.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/customers/customers.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/customers/customers.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/customers/customers.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/products/products.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/products/products.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/products/products.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/products/products.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/products/products.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/shop.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/shop.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/shop.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/shop.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/shop.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/shop.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/shop.module.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/shop.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/shop/shop.routes.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/chat/chat.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/chat/chat.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/chat/chat.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/chat/chat.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/chat/chat.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/move-shape/draggable.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/move-shape/draggable.directive.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/move-shape/move-shape.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/move-shape/move-shape.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/move-shape/move-shape.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/move-shape/move-shape.component.scss -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/move-shape/move-shape.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/move-shape/move-shape.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/signalr.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/signalr.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/signalr.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/signalr.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/signalr.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/signalr.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/signalr.module.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/signalr.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/+examples/examples/signalr/signalr.routes.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/__snapshots__/app.component.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/__snapshots__/app.component.spec.ts.snap -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/api-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/api-client.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | main { 2 | margin-top: 60px; 3 | } -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/app.module.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/components/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/components/footer/footer.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/components/footer/footer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/components/footer/footer.component.scss -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/components/footer/footer.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/components/footer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './footer.component'; 2 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/components/header/header.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/components/header/header.component.scss: -------------------------------------------------------------------------------- 1 | header { 2 | margin-bottom: 10px; 3 | } -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/components/header/header.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/components/header/index.ts: -------------------------------------------------------------------------------- 1 | export * from './header.component'; 2 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/components/index.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/components/privacy/index.ts: -------------------------------------------------------------------------------- 1 | export * from './privacy.component'; 2 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/components/privacy/privacy.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/components/privacy/privacy.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/components/privacy/privacy.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/components/privacy/privacy.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/home/home.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/home/home.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/models.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/accordion/accordion.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/accordion/accordion.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/accordion/accordion.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/accordion/accordion.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/accordion/accordion.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/card-deck/card-deck.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/card-deck/card-deck.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/card-deck/card-deck.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/card-deck/card-deck.component.scss -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/card-deck/card-deck.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/card-deck/card-deck.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/card/card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/card/card.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/card/card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/card/card.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/field-base/field-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/field-base/field-base.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/field-base/index.ts: -------------------------------------------------------------------------------- 1 | export * from './field-base'; 2 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-button-group/form-button-group.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-button-group/form-button-group.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-button-group/form-button-group.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-button-group/form-button-group.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-button/form-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-button/form-button.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-button/form-button.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-button/form-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-button/form-button.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-checkbox-list/form-checkbox-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-checkbox-list/form-checkbox-list.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-checkbox-list/form-checkbox-list.component.scss: -------------------------------------------------------------------------------- 1 | .invalid-feedback { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-checkbox-list/form-checkbox-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-checkbox-list/form-checkbox-list.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-checkbox/form-checkbox.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-checkbox/form-checkbox.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-checkbox/form-checkbox.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-checkbox/form-checkbox.component.scss -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-checkbox/form-checkbox.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-checkbox/form-checkbox.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-date/form-date.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-date/form-date.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-date/form-date.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-date/form-date.component.scss -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-date/form-date.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-date/form-date.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-field-error/form-field-error.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-field-error/form-field-error.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-field-error/form-field-error.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-field-error/form-field-error.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-field-error/form-field-error.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-file-path/form-file-path.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-file-path/form-file-path.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-file-path/form-file-path.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-file-path/form-file-path.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-file-path/form-file-path.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-file/file-input.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-file/file-input.directive.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-file/form-file.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-file/form-file.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-file/form-file.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-file/form-file.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-file/form-file.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-input-group/form-input-group.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-input-group/form-input-group.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-input-group/form-input-group.component.scss: -------------------------------------------------------------------------------- 1 | .invalid-feedback { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-input-group/form-input-group.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-input-group/form-input-group.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-input/form-input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-input/form-input.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-input/form-input.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-input/form-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-input/form-input.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-radio-list/form-radio-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-radio-list/form-radio-list.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-radio-list/form-radio-list.component.scss: -------------------------------------------------------------------------------- 1 | .invalid-feedback { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-radio-list/form-radio-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-radio-list/form-radio-list.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-select/form-select.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-select/form-select.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-select/form-select.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-select/form-select.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-select/form-select.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-textarea/form-textarea.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-textarea/form-textarea.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-textarea/form-textarea.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-textarea/form-textarea.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-textarea/form-textarea.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-time/form-time.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-time/form-time.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-time/form-time.component.scss: -------------------------------------------------------------------------------- 1 | .invalid-feedback { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-time/form-time.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form-time/form-time.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form/form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form/form.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form/form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form/form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form/form.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/form/index.ts: -------------------------------------------------------------------------------- 1 | export * from './form.component'; 2 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/components/index.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/directives/field-color-validation.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/directives/field-color-validation.directive.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/directives/form-field.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/directives/form-field.directive.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/directives/index.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/forms.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/forms.service.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/forms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/forms/index.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/components/date-filter/date-filter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/grid/components/date-filter/date-filter.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/components/date-filter/date-filter.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/grid/components/date-filter/date-filter.component.scss -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/components/date-filter/date-filter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/grid/components/date-filter/date-filter.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/components/dropdown-filter/dropdown-filter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/grid/components/dropdown-filter/dropdown-filter.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/components/dropdown-filter/dropdown-filter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/components/dropdown-filter/dropdown-filter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/grid/components/dropdown-filter/dropdown-filter.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/grid/components/index.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/grid.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/grid/grid.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/grid.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/grid/grid.component.scss -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/grid.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/grid/grid.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/grid/index.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/renderers/action-button/action-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/grid/renderers/action-button/action-button.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/renderers/action-button/action-button.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/renderers/action-button/action-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/grid/renderers/action-button/action-button.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/renderers/action-buttons/action-buttons.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/grid/renderers/action-buttons/action-buttons.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/renderers/action-buttons/action-buttons.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/renderers/action-buttons/action-buttons.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/grid/renderers/action-buttons/action-buttons.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/grid/renderers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/grid/renderers/index.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/image-resizer/image-resizer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/image-resizer/image-resizer.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/image-resizer/image-resizer.component.scss: -------------------------------------------------------------------------------- 1 | button { 2 | margin-right: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/image-resizer/image-resizer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/image-resizer/image-resizer.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/index.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/list/list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/list/list.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/list/list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/list/list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/list/list.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/loading/loading.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/loading/loading.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/loading/loading.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/loading/loading.component.scss -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/loading/loading.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/loading/loading.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/login-menu/login-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/login-menu/login-menu.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/login-menu/login-menu.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/login-menu/login-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/login-menu/login-menu.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/login/login.component.html: -------------------------------------------------------------------------------- 1 |
{{ message | async }}
-------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/login/login.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/logout/logout.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/logout/logout.component.html: -------------------------------------------------------------------------------- 1 |2 | {{ message | async }} 3 |
4 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/logout/logout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/logout/logout.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/modal/index.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/modal/modal-template.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/modal/modal-template.directive.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/modal/modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/modal/modal.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/modal/modal.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/modal/modal.component.scss -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/modal/modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/modal/modal.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/page-heading/page-heading.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/page-heading/page-heading.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/page-heading/page-heading.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/page-heading/page-heading.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/page-heading/page-heading.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/search-input/search-input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/search-input/search-input.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/search-input/search-input.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/search-input/search-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/search-input/search-input.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/toast/toast.comonent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/toast/toast.comonent.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/toast/toast.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/toast/toast.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/toggle-switch/toggle-switch.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/toggle-switch/toggle-switch.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/toggle-switch/toggle-switch.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/toggle-switch/toggle-switch.component.scss -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/toggle-switch/toggle-switch.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/toggle-switch/toggle-switch.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/typeahead/typeahead.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/typeahead/typeahead.component.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/components/typeahead/typeahead.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/components/typeahead/typeahead.component.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/constants/auth.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/constants/auth.constants.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/constants/index.ts: -------------------------------------------------------------------------------- 1 | export * from './auth.constants'; 2 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/index.ts: -------------------------------------------------------------------------------- 1 | export * from './shared.module'; 2 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/models/accordion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/models/accordion.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/models/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/models/auth.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/models/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/models/card.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/models/forms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/models/forms.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/models/grid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/models/grid.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/models/index.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/models/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/models/list.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/models/modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/models/modal.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/models/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/models/nav.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/pipes/group-by.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/pipes/group-by.pipe.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/pipes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/pipes/index.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/pipes/safe.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/pipes/safe.pipe.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/pipes/translate.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/pipes/translate.pipe.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/pipes/uppercase.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/pipes/uppercase.pipe.spec.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/pipes/uppercase.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/pipes/uppercase.pipe.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/app.service.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/authorize.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/authorize.service.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/config.service.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/custom-date-adapter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/custom-date-adapter.service.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/custom-date-formatter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/custom-date-formatter.service.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/data.service.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/global-error.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/global-error.service.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/guards/authorize.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/guards/authorize.guard.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/guards/index.ts: -------------------------------------------------------------------------------- 1 | export * from './authorize.guard'; 2 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/index.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/interceptors/auth.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/interceptors/auth.interceptor.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/interceptors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/interceptors/index.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/interceptors/jwt.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/interceptors/jwt.interceptor.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/interceptors/loading.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/interceptors/loading.interceptor.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/interceptors/timing.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/interceptors/timing.interceptor.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/jwt-decode/index.ts: -------------------------------------------------------------------------------- 1 | export * from './jwthelper.service'; 2 | -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/jwt-decode/jwthelper.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/jwt-decode/jwthelper.service.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/loading.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/loading.service.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/modal-state.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/modal-state.service.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/modal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/modal.service.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/toast.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/toast.service.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/services/utils.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/services/utils.service.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/icons/icon-384x384.png -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/icons/icon-72x72.png -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/icons/icon-96x96.png -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/images/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/images/angular.png -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/images/aspnetcore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/images/aspnetcore.png -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/images/email/main-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/images/email/main-image.jpg -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/images/email/secondary-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/images/email/secondary-image.jpg -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/styles/fonts/data-table.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/styles/fonts/data-table.eot -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/styles/fonts/data-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/styles/fonts/data-table.svg -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/styles/fonts/data-table.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/styles/fonts/data-table.ttf -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/styles/fonts/data-table.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/styles/fonts/data-table.woff -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/assets/styles/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/assets/styles/icons.css -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/environments/environment.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/index.html -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/jestGlobalMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/jestGlobalMocks.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/main.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/manifest.json -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/polyfills.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/setupJest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/setupJest.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/styles.scss -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/src/typings.d.ts -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /src/Presentation/Web/ClientApp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ClientApp/tslint.json -------------------------------------------------------------------------------- /src/Presentation/Web/Controllers/AppController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/Controllers/AppController.cs -------------------------------------------------------------------------------- /src/Presentation/Web/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/Controllers/BaseController.cs -------------------------------------------------------------------------------- /src/Presentation/Web/Controllers/CategoriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/Controllers/CategoriesController.cs -------------------------------------------------------------------------------- /src/Presentation/Web/Controllers/CustomersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/Controllers/CustomersController.cs -------------------------------------------------------------------------------- /src/Presentation/Web/Controllers/EmployeesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/Controllers/EmployeesController.cs -------------------------------------------------------------------------------- /src/Presentation/Web/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /src/Presentation/Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/Dockerfile -------------------------------------------------------------------------------- /src/Presentation/Web/Dockerfile.heroku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/Dockerfile.heroku -------------------------------------------------------------------------------- /src/Presentation/Web/Middlewares/SecurityHeaderMiddleWare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/Middlewares/SecurityHeaderMiddleWare.cs -------------------------------------------------------------------------------- /src/Presentation/Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/Program.cs -------------------------------------------------------------------------------- /src/Presentation/Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Presentation/Web/Services/ApplicationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/Services/ApplicationService.cs -------------------------------------------------------------------------------- /src/Presentation/Web/SignalR/ChatHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/SignalR/ChatHub.cs -------------------------------------------------------------------------------- /src/Presentation/Web/SignalR/ShapeHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/SignalR/ShapeHub.cs -------------------------------------------------------------------------------- /src/Presentation/Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/Startup.cs -------------------------------------------------------------------------------- /src/Presentation/Web/ViewModels/ContactUsVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ViewModels/ContactUsVm.cs -------------------------------------------------------------------------------- /src/Presentation/Web/ViewModels/ContentVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ViewModels/ContentVm.cs -------------------------------------------------------------------------------- /src/Presentation/Web/ViewModels/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/ViewModels/Enums.cs -------------------------------------------------------------------------------- /src/Presentation/Web/Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/Web.csproj -------------------------------------------------------------------------------- /src/Presentation/Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/appsettings.Development.json -------------------------------------------------------------------------------- /src/Presentation/Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/appsettings.json -------------------------------------------------------------------------------- /src/Presentation/Web/translations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/translations.csv -------------------------------------------------------------------------------- /src/Presentation/Web/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/web.config -------------------------------------------------------------------------------- /src/Presentation/Web/wwwroot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/Web/wwwroot/api/specification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/wwwroot/api/specification.json -------------------------------------------------------------------------------- /src/Presentation/Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/src/Presentation/Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /tests/Integration/CustomWebApplicationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/tests/Integration/CustomWebApplicationFactory.cs -------------------------------------------------------------------------------- /tests/Integration/Helpers/HtmlHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/tests/Integration/Helpers/HtmlHelpers.cs -------------------------------------------------------------------------------- /tests/Integration/Helpers/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/tests/Integration/Helpers/HttpClientExtensions.cs -------------------------------------------------------------------------------- /tests/Integration/Helpers/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/tests/Integration/Helpers/Utilities.cs -------------------------------------------------------------------------------- /tests/Integration/Integration.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/tests/Integration/Integration.Tests.csproj -------------------------------------------------------------------------------- /tests/Integration/IntegrationTests/BaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/tests/Integration/IntegrationTests/BaseTests.cs -------------------------------------------------------------------------------- /tests/Integration/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/tests/Integration/Properties/launchSettings.json -------------------------------------------------------------------------------- /tests/Web/Controllers/HomeControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/tests/Web/Controllers/HomeControllerTests.cs -------------------------------------------------------------------------------- /tests/Web/Web.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackproltd/AspNetCoreSpa/HEAD/tests/Web/Web.Tests.csproj --------------------------------------------------------------------------------