├── .gitignore ├── Legacy1 ├── Resources │ ├── Database │ │ ├── 00 - Database.sql │ │ ├── 01 - Schemas.sql │ │ ├── 02 - Tables.sql │ │ ├── 03 - Constraints.sql │ │ ├── 04 - Functions.sql │ │ ├── 05 - Views.sql │ │ ├── 06 - Rows.sql │ │ ├── deploy.bat │ │ └── readme.md │ └── PaymentGateway │ │ ├── Database │ │ ├── RothschildHouse.sql │ │ └── Views.sql │ │ ├── EntityModel │ │ ├── EntityModel.sln │ │ └── RothschildHouse │ │ │ ├── Program.cs │ │ │ └── RothschildHouse.csproj │ │ ├── RothschildHouse.old │ │ ├── RothschildHouse.Client │ │ │ ├── Program.cs │ │ │ └── RothschildHouse.Client.csproj │ │ ├── RothschildHouse.Identity │ │ │ ├── Config.cs │ │ │ ├── Domain │ │ │ │ ├── IdentityDbContext.cs │ │ │ │ ├── IdentityDbContextExtensions.cs │ │ │ │ ├── User.cs │ │ │ │ └── UserClaim.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── RothschildHouse.Identity.csproj │ │ │ ├── Services │ │ │ │ └── RothschildHouseProfileService.cs │ │ │ ├── Startup.cs │ │ │ ├── Validation │ │ │ │ └── RothschildHouseResourceOwnerPasswordValidator.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── tempkey.rsa │ │ ├── RothschildHouse.sln │ │ └── RothschildHouse │ │ │ ├── Controllers │ │ │ └── TransactionController.cs │ │ │ ├── Domain │ │ │ ├── CreditCardExtensions.cs │ │ │ ├── DomainDrivenDesign.cs │ │ │ └── DomainDrivenDesignExtensions.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Requests │ │ │ └── PostPaymentRequest.cs │ │ │ ├── Responses │ │ │ └── PaymentResponse.cs │ │ │ ├── RothschildHouse.csproj │ │ │ ├── RothschildHouse.xml │ │ │ ├── Startup.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ └── RothschildHouse │ │ ├── 3p │ │ └── RothschildHouse.3P.CityBank │ │ │ ├── CityBankPaymentServicesClient.cs │ │ │ ├── Contracts │ │ │ └── ICityBankPaymentServicesClient.cs │ │ │ ├── Data │ │ │ ├── Card.cs │ │ │ └── Database.cs │ │ │ ├── Extensions.cs │ │ │ ├── Models │ │ │ ├── ProcessPaymentRequest.cs │ │ │ └── ProcessPaymentResponse.cs │ │ │ └── RothschildHouse.3P.CityBank.csproj │ │ ├── RothschildHouse.sln │ │ ├── mock │ │ └── RothschildHouse.Mock.PaymentTransactions │ │ │ ├── Program.cs │ │ │ ├── RothschildHouse.Mock.PaymentTransactions.csproj │ │ │ └── RothschildHouseClient.cs │ │ ├── seed │ │ └── RothschildHouse.Seed.PaymentGateway │ │ │ ├── Helpers │ │ │ └── DbContextHelper.cs │ │ │ ├── Program.cs │ │ │ ├── RothschildHouse.Seed.PaymentGateway.csproj │ │ │ └── Seeds │ │ │ ├── ClientApplications.cs │ │ │ ├── Currencies.cs │ │ │ ├── PersonCustomers.cs │ │ │ ├── VCardTypes.cs │ │ │ ├── VCustomerTypes.cs │ │ │ └── VPaymentTransactionStatuses.cs │ │ └── source │ │ ├── RothschildHouse.API.PaymentGateway │ │ ├── Controllers │ │ │ └── PaymentGatewayController.cs │ │ ├── Domain │ │ │ ├── Common │ │ │ │ ├── AuditableEntity.cs │ │ │ │ └── Entity.cs │ │ │ ├── Entities │ │ │ │ ├── Card.cs │ │ │ │ ├── ClientApplication.cs │ │ │ │ ├── Company.cs │ │ │ │ ├── Country.cs │ │ │ │ ├── Currency.cs │ │ │ │ ├── Customer.cs │ │ │ │ ├── EnumDescription.cs │ │ │ │ ├── PaymentTransaction.cs │ │ │ │ ├── PaymentTransactionLog.cs │ │ │ │ └── Person.cs │ │ │ ├── Enums │ │ │ │ ├── CardType.cs │ │ │ │ ├── CustomerType.cs │ │ │ │ └── PaymentTransactionStatus.cs │ │ │ ├── Exceptions │ │ │ │ └── RothschildHouseException.cs │ │ │ └── Notifications │ │ │ │ ├── CardCreationNotification.cs │ │ │ │ └── PaymentTransactionProcessedNotification.cs │ │ ├── Extensions │ │ │ └── ResponseExtensions.cs │ │ ├── Features │ │ │ ├── Cards │ │ │ │ └── Queries │ │ │ │ │ ├── GetCard.cs │ │ │ │ │ └── SearchCards.cs │ │ │ ├── ClientApplications │ │ │ │ └── Queries │ │ │ │ │ ├── GetClientApplication.cs │ │ │ │ │ └── SearchClientApplications.cs │ │ │ ├── Customers │ │ │ │ ├── Commands │ │ │ │ │ ├── CreateCustomer.cs │ │ │ │ │ └── UpdateCustomer.cs │ │ │ │ └── Queries │ │ │ │ │ ├── GetCustomer.cs │ │ │ │ │ └── SearchCustomers.cs │ │ │ ├── Extensions.cs │ │ │ └── PaymentTransactions │ │ │ │ ├── Commands │ │ │ │ └── ProcessPaymentTransaction.cs │ │ │ │ ├── NotificationHandlers │ │ │ │ └── PaymentTransactionProcessedNotificationHandler.cs │ │ │ │ └── Queries │ │ │ │ ├── GetPaymentTransaction.cs │ │ │ │ ├── SearchPaymentTransactions.cs │ │ │ │ └── SearchPaymentTransactionsViewBag.cs │ │ ├── Filters │ │ │ ├── DbTransactionFilter.cs │ │ │ └── RothschildHouseExceptionFilter.cs │ │ ├── HubMethods.cs │ │ ├── Hubs │ │ │ └── PaymentTransactionsHub.cs │ │ ├── Infrastructure │ │ │ ├── Extensions.cs │ │ │ └── Persistence │ │ │ │ ├── Configurations │ │ │ │ ├── AuditableEntityConfiguration.cs │ │ │ │ ├── CardConfiguration.cs │ │ │ │ ├── ClientApplicationConfiguration.cs │ │ │ │ ├── CompanyConfiguration.cs │ │ │ │ ├── CountryConfiguration.cs │ │ │ │ ├── CurrencyConfiguration.cs │ │ │ │ ├── CustomerConfiguration.cs │ │ │ │ ├── EntityConfiguration.cs │ │ │ │ ├── EnumDescriptionConfiguration.cs │ │ │ │ ├── PaymentTransactionConfiguration.cs │ │ │ │ ├── PaymentTransactionLogConfiguration.cs │ │ │ │ ├── PersonConfiguration.cs │ │ │ │ ├── VCardTypeConfiguration.cs │ │ │ │ └── VPaymentTransactionStatusConfiguration.cs │ │ │ │ ├── DateTimeExtensions.cs │ │ │ │ ├── IQueryableExtensions.cs │ │ │ │ ├── MediatRExtensions.cs │ │ │ │ ├── QueryModels │ │ │ │ ├── VCardType.cs │ │ │ │ └── VPaymentTransactionStatus.cs │ │ │ │ ├── RothschildHouseDbContext.cs │ │ │ │ └── RothschildHouseDbContextQueries.cs │ │ ├── Policies.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── RothschildHouse.API.PaymentGateway.csproj │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── RothschildHouse.Identity │ │ ├── Config.cs │ │ ├── Data │ │ │ ├── Initializers │ │ │ │ └── RothschildHouseDbInitializer.cs │ │ │ ├── Migrations │ │ │ │ ├── 20211227182747_Users.Designer.cs │ │ │ │ ├── 20211227182747_Users.cs │ │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ │ ├── Models │ │ │ │ └── RothschildHouseUser.cs │ │ │ └── RothschildHouseDbContext.cs │ │ ├── HostingExtensions.cs │ │ ├── Pages │ │ │ ├── Account │ │ │ │ ├── AccessDenied.cshtml │ │ │ │ ├── AccessDenied.cshtml.cs │ │ │ │ ├── Login │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ ├── Index.cshtml.cs │ │ │ │ │ ├── InputModel.cs │ │ │ │ │ ├── LoginOptions.cs │ │ │ │ │ └── ViewModel.cs │ │ │ │ └── Logout │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ ├── Index.cshtml.cs │ │ │ │ │ ├── LoggedOut.cshtml │ │ │ │ │ ├── LoggedOut.cshtml.cs │ │ │ │ │ ├── LoggedOutViewModel.cs │ │ │ │ │ └── LogoutOptions.cs │ │ │ ├── Ciba │ │ │ │ ├── All.cshtml │ │ │ │ ├── All.cshtml.cs │ │ │ │ ├── Consent.cshtml │ │ │ │ ├── Consent.cshtml.cs │ │ │ │ ├── ConsentOptions.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── InputModel.cs │ │ │ │ ├── ViewModel.cs │ │ │ │ └── _ScopeListItem.cshtml │ │ │ ├── Consent │ │ │ │ ├── ConsentOptions.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── InputModel.cs │ │ │ │ ├── ViewModel.cs │ │ │ │ └── _ScopeListItem.cshtml │ │ │ ├── Device │ │ │ │ ├── DeviceOptions.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── InputModel.cs │ │ │ │ ├── Success.cshtml │ │ │ │ ├── Success.cshtml.cs │ │ │ │ ├── ViewModel.cs │ │ │ │ └── _ScopeListItem.cshtml │ │ │ ├── Diagnostics │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── Extensions.cs │ │ │ ├── ExternalLogin │ │ │ │ ├── Callback.cshtml │ │ │ │ ├── Callback.cshtml.cs │ │ │ │ ├── Challenge.cshtml │ │ │ │ └── Challenge.cshtml.cs │ │ │ ├── Grants │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── Home │ │ │ │ └── Error │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ ├── Index.cshtml.cs │ │ │ │ │ └── ViewModel.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Redirect │ │ │ │ ├── Index.cshtml │ │ │ │ └── Index.cshtml.cs │ │ │ ├── SecurityHeadersAttribute.cs │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _Nav.cshtml │ │ │ │ └── _ValidationSummary.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── RothschildHouse.Identity.csproj │ │ ├── SeedData.cs │ │ ├── Services │ │ │ └── RothschildHouse.cs │ │ ├── Tokens │ │ │ ├── RothschildHouseClaimTypes.cs │ │ │ └── RothschildHouseRoles.cs │ │ ├── appsettings.json │ │ ├── buildschema.bat │ │ ├── keys │ │ │ └── is-signing-key-9C61C8FC2850733C7502397302A8FE2C.json │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── site.css │ │ │ ├── site.min.css │ │ │ └── site.scss │ │ │ ├── duende-logo.svg │ │ │ ├── favicon.ico │ │ │ ├── js │ │ │ ├── signin-redirect.js │ │ │ └── signout-redirect.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── bootstrap4-glyphicons │ │ │ ├── LICENSE │ │ │ ├── css │ │ │ │ ├── bootstrap-glyphicons.css │ │ │ │ └── bootstrap-glyphicons.min.css │ │ │ ├── fonts │ │ │ │ └── glyphicons │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── maps │ │ │ │ ├── glyphicons-fontawesome.css │ │ │ │ ├── glyphicons-fontawesome.less │ │ │ │ └── glyphicons-fontawesome.min.css │ │ │ └── jquery │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ ├── RothschildHouse.Library.Common │ │ ├── Authorization │ │ │ └── Roles.cs │ │ ├── Clients │ │ │ ├── Contracts │ │ │ │ └── IRothschildHouseClient.cs │ │ │ └── DataContracts │ │ │ │ ├── CardDetailsModel.cs │ │ │ │ ├── CardItemModel.cs │ │ │ │ ├── ClientApplicationDetailsModel.cs │ │ │ │ ├── ClientApplicationItemModel.cs │ │ │ │ ├── Common │ │ │ │ ├── CreatedResponse.cs │ │ │ │ ├── ListItem.cs │ │ │ │ ├── ListResponse.cs │ │ │ │ ├── PagedResponse.cs │ │ │ │ ├── Response.cs │ │ │ │ └── SingleResponse.cs │ │ │ │ ├── CreateCustomerCommand.cs │ │ │ │ ├── CustomerDetailsModel.cs │ │ │ │ ├── CustomerItemModel.cs │ │ │ │ ├── PaymentTransactionDetailsModel.cs │ │ │ │ ├── PaymentTransactionItemModel.cs │ │ │ │ ├── PaymentTransactionLogDetailsModel.cs │ │ │ │ ├── ProcessPaymentTransactionCommand.cs │ │ │ │ ├── ProcessPaymentTransactionResponse.cs │ │ │ │ ├── SearchCardsQuery.cs │ │ │ │ ├── SearchClientApplicationsQuery.cs │ │ │ │ ├── SearchCustomersQuery.cs │ │ │ │ ├── SearchPaymentTransactionsQuery.cs │ │ │ │ ├── SearchPaymentTransactionsViewBagRespose.cs │ │ │ │ └── UpdateCustomerCommand.cs │ │ └── RothschildHouse.Library.Common.csproj │ │ └── RothschildHouse.WebUI.PaymentGateway │ │ ├── App.razor │ │ ├── Clients │ │ └── RothschildHouseClient.cs │ │ ├── Controllers │ │ └── CultureController.cs │ │ ├── Data │ │ ├── WeatherForecast.cs │ │ └── WeatherForecastService.cs │ │ ├── Extensions.cs │ │ ├── Pages │ │ ├── About.razor │ │ ├── Card.razor │ │ ├── CardDetails.razor │ │ ├── ClientApplication.razor │ │ ├── ClientAppplicationDetails.razor │ │ ├── Counter.razor │ │ ├── Customer.razor │ │ ├── CustomerDetails.razor │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── FetchData.razor │ │ ├── Index.razor │ │ ├── PaymentTransaction.razor │ │ ├── PaymentTransactionDetails.razor │ │ └── _Host.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Resources │ │ ├── Index.Designer.cs │ │ ├── Index.es.Designer.cs │ │ ├── Index.es.resx │ │ ├── Index.he.resx │ │ ├── Index.resx │ │ ├── NavMenu.Designer.cs │ │ ├── NavMenu.es.Designer.cs │ │ ├── NavMenu.es.resx │ │ └── NavMenu.resx │ │ ├── RothschildHouse.WebUI.PaymentGateway.csproj │ │ ├── Shared │ │ ├── CultureSelector.razor │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── NavMenu.razor │ │ ├── NavMenu.razor.css │ │ └── SurveyPrompt.razor │ │ ├── SupportedCultures.cs │ │ ├── _Imports.razor │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── css │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── open-iconic │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── font │ │ │ │ ├── css │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ └── fonts │ │ │ │ ├── open-iconic.eot │ │ │ │ ├── open-iconic.otf │ │ │ │ ├── open-iconic.svg │ │ │ │ ├── open-iconic.ttf │ │ │ │ └── open-iconic.woff │ │ └── site.css │ │ └── favicon.png ├── Source │ └── Backend │ │ └── OnlineStore │ │ ├── OnlineStore.API.Common.IntegrationTests │ │ ├── Helpers │ │ │ ├── ContentHelper.cs │ │ │ └── TokenHelper.cs │ │ ├── Mocks │ │ │ ├── ClientSettingsMocker.cs │ │ │ └── OnlineStoreIdentityClientSettings.cs │ │ ├── OnlineStore.API.Common.IntegrationTests.csproj │ │ └── TestFixture.cs │ │ ├── OnlineStore.API.Common.UnitTests │ │ ├── Mocks │ │ │ ├── ClaimsPrincipalExtensions.cs │ │ │ ├── DbContextExtensions.cs │ │ │ ├── DbContextMocker.cs │ │ │ └── ServiceMocker.cs │ │ └── OnlineStore.API.Common.UnitTests.csproj │ │ ├── OnlineStore.API.Common │ │ ├── Clients │ │ │ ├── ApiUrl.cs │ │ │ ├── ApiUrlExtensions.cs │ │ │ ├── Contracts │ │ │ │ ├── IRothschildHouseIdentityClient.cs │ │ │ │ └── IRothschildHousePaymentClient.cs │ │ │ ├── IdentityServerHelper.cs │ │ │ ├── Models │ │ │ │ ├── HttpResponseMessageExtensions.cs │ │ │ │ ├── IRequest.cs │ │ │ │ ├── PaymentResponse.cs │ │ │ │ ├── PostPaymentRequest.cs │ │ │ │ └── RequestExtensions.cs │ │ │ ├── RothschildHouseIdentityClient.cs │ │ │ ├── RothschildHouseIdentitySettings.cs │ │ │ ├── RothschildHousePaymentClient.cs │ │ │ └── RothschildHousePaymentSettings.cs │ │ ├── Controllers │ │ │ ├── CommonController.cs │ │ │ └── OnlineStoreController.cs │ │ ├── Filters │ │ │ └── OnlineStoreActionFilter.cs │ │ ├── OnlineStore.API.Common │ │ ├── OnlineStore.API.Common.csproj │ │ ├── OnlineStore.API.Common.xml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Responses │ │ │ └── Extensions.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── OnlineStore.API.Identity │ │ ├── Config.cs │ │ ├── Domain │ │ │ ├── IdentityDbContext.cs │ │ │ ├── IdentityDbContextExtentions.cs │ │ │ ├── User.cs │ │ │ └── UserClaim.cs │ │ ├── OnlineStore.API.Identity.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Services │ │ │ └── ProfileService.cs │ │ ├── Startup.cs │ │ ├── Validation │ │ │ └── ResourceOwnerPasswordValidator.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── tempkey.rsa │ │ ├── OnlineStore.API.Sales.IntegrationTests │ │ ├── OnlineStore.API.Sales.IntegrationTests.csproj │ │ └── SalesTests.cs │ │ ├── OnlineStore.API.Sales.UnitTests │ │ ├── Mocks │ │ │ ├── IdentityMocker.cs │ │ │ └── PaymentGateway.cs │ │ ├── OnlineStore.API.Sales.UnitTests.csproj │ │ └── SalesControllerTests.cs │ │ ├── OnlineStore.API.Sales │ │ ├── Controllers │ │ │ └── SalesController.cs │ │ ├── OnlineStore.API.Sales.csproj │ │ ├── OnlineStore.API.Sales.xml │ │ ├── PolicyRequirements │ │ │ └── CustomerPolicyRequirement.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Requests │ │ │ ├── Extensions.cs │ │ │ ├── GetOrdersParameters.cs │ │ │ ├── OrderDetailRequest.cs │ │ │ └── PostOrderRequest.cs │ │ ├── Security │ │ │ ├── Policies.cs │ │ │ └── Roles.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── OnlineStore.API.Warehouse.IntegrationTests │ │ ├── OnlineStore.API.Warehouse.IntegrationTests.csproj │ │ └── WarehouseTests.cs │ │ ├── OnlineStore.API.Warehouse.UnitTests │ │ ├── Mocks │ │ │ └── IdentityMocker.cs │ │ ├── OnlineStore.API.Warehouse.UnitTests.csproj │ │ └── WarehouseControllerTests.cs │ │ ├── OnlineStore.API.Warehouse │ │ ├── Controllers │ │ │ └── WarehouseController.cs │ │ ├── OnlineStore.API.Warehouse.csproj │ │ ├── OnlineStore.API.Warehouse.xml │ │ ├── PolicyRequirements │ │ │ ├── GetProductInventoryPolicyRequirement.cs │ │ │ ├── PostProductPolicyRequirement.cs │ │ │ ├── PutProductUnitPricePolicyRequirement.cs │ │ │ └── SearchProductsPolicyRequirement.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Requests │ │ │ ├── Extensions.cs │ │ │ ├── GetProductInventoryRequest.cs │ │ │ ├── GetProductsRequest.cs │ │ │ ├── PostProductRequest.cs │ │ │ └── PutProductUnitPriceRequest.cs │ │ ├── Security │ │ │ ├── Policies.cs │ │ │ └── Roles.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── OnlineStore.Common │ │ ├── Helpers │ │ │ └── LoggingHelper.cs │ │ └── OnlineStore.Common.csproj │ │ ├── OnlineStore.Core │ │ ├── Business │ │ │ ├── AddOrderWithDiscontinuedProductException.cs │ │ │ ├── Contracts │ │ │ │ ├── IHumanResourcesService.cs │ │ │ │ ├── ISalesService.cs │ │ │ │ ├── IService.cs │ │ │ │ └── IWarehouseService.cs │ │ │ ├── DuplicatedProductNameException.cs │ │ │ ├── ForeignKeyDependencyException.cs │ │ │ ├── HumanResourcesService.cs │ │ │ ├── InvalidQuantityException.cs │ │ │ ├── NonExistingProductException.cs │ │ │ ├── OnlineStoreException.cs │ │ │ ├── Requests │ │ │ │ ├── CreateOrderRequest.cs │ │ │ │ ├── ICreateOrderRequest.cs │ │ │ │ └── IRequest.cs │ │ │ ├── Responses │ │ │ │ ├── IListResponse.cs │ │ │ │ ├── IPagedResponse.cs │ │ │ │ ├── IResponse.cs │ │ │ │ ├── ISingleResponse.cs │ │ │ │ ├── ListResponse.cs │ │ │ │ ├── PagedResponse.cs │ │ │ │ ├── Response.cs │ │ │ │ ├── ResponseExtensions.cs │ │ │ │ └── SingleResponse.cs │ │ │ ├── SalesDisplays.cs │ │ │ ├── SalesService.cs │ │ │ ├── Service.cs │ │ │ └── WarehouseService.cs │ │ ├── Domain │ │ │ ├── Configurations │ │ │ │ ├── Dbo │ │ │ │ │ ├── ChangeLogConfiguration.cs │ │ │ │ │ ├── ChangeLogExclusionConfiguration.cs │ │ │ │ │ ├── CountryConfiguration.cs │ │ │ │ │ ├── CountryCurrencyConfiguration.cs │ │ │ │ │ ├── CurrencyConfiguration.cs │ │ │ │ │ └── EventLogConfiguration.cs │ │ │ │ ├── HumanResources │ │ │ │ │ ├── EmployeeAddressConfiguration.cs │ │ │ │ │ ├── EmployeeConfiguration.cs │ │ │ │ │ └── EmployeeEmailConfiguration.cs │ │ │ │ ├── Sales │ │ │ │ │ ├── CustomerConfiguration.cs │ │ │ │ │ ├── OrderDetailConfiguration.cs │ │ │ │ │ ├── OrderHeaderConfiguration.cs │ │ │ │ │ ├── OrderStatusConfiguration.cs │ │ │ │ │ ├── OrderSummaryConfiguration.cs │ │ │ │ │ ├── PaymentMethodConfiguration.cs │ │ │ │ │ └── ShipperConfiguration.cs │ │ │ │ └── Warehouse │ │ │ │ │ ├── LocationConfiguration.cs │ │ │ │ │ ├── ProductCategoryConfiguration.cs │ │ │ │ │ ├── ProductConfiguration.cs │ │ │ │ │ ├── ProductInventoryConfiguration.cs │ │ │ │ │ └── ProductUnitPriceHistoryConfiguration.cs │ │ │ ├── CustomerOrderInfo.cs │ │ │ ├── DataContracts │ │ │ │ └── OrderInfo.cs │ │ │ ├── Dbo │ │ │ │ ├── ChangeLog.cs │ │ │ │ ├── ChangeLogExclusion.cs │ │ │ │ ├── Country.cs │ │ │ │ ├── CountryCurrency.cs │ │ │ │ ├── Currency.cs │ │ │ │ └── EventLog.cs │ │ │ ├── HumanResources │ │ │ │ ├── Employee.cs │ │ │ │ ├── EmployeeAddress.cs │ │ │ │ └── EmployeeEmail.cs │ │ │ ├── IAuditableEntity.cs │ │ │ ├── IEntity.cs │ │ │ ├── IQueryableExtensions.cs │ │ │ ├── OnlineStoreDbContext.cs │ │ │ ├── OnlineStoreDbContextExtensions.cs │ │ │ ├── OnlineStoreDbContextQueries.cs │ │ │ ├── Sales │ │ │ │ ├── Customer.cs │ │ │ │ ├── OrderDetail.cs │ │ │ │ ├── OrderHeader.cs │ │ │ │ ├── OrderStatus.cs │ │ │ │ ├── OrderSummary.cs │ │ │ │ ├── PaymentMethod.cs │ │ │ │ └── Shipper.cs │ │ │ └── Warehouse │ │ │ │ ├── Location.cs │ │ │ │ ├── Product.cs │ │ │ │ ├── ProductCategory.cs │ │ │ │ ├── ProductInventory.cs │ │ │ │ └── ProductUnitPrice.cs │ │ ├── IUserInfo.cs │ │ ├── OnlineStore.Core.csproj │ │ └── UserInfo.cs │ │ ├── OnlineStore.Mocker │ │ ├── DbContextMocker.cs │ │ ├── OnlineStore.Mocker.csproj │ │ ├── Program.cs │ │ ├── ServiceMocker.cs │ │ └── appsettings.json │ │ └── OnlineStore.sln ├── sales-build.bat ├── sales-integration-tests.bat ├── sales-unit-tests.bat ├── warehouse-build.bat ├── warehouse-integration-tests.bat └── warehouse-unit-tests.bat ├── Legacy2 └── PaymentGateway │ ├── Database │ ├── 00-logins.sql │ ├── 01-database.sql │ ├── 02-users.sql │ ├── 03-schemas.sql │ ├── 04-tables.sql │ ├── 05-constraints.sql │ ├── 06-views.sql │ └── deploy.bat │ ├── EntityModel │ ├── EntityModel.sln │ └── RothschildHouse │ │ ├── Program.cs │ │ └── RothschildHouse.csproj │ ├── RothschildHouse.GUI │ ├── RothschildHouse.GUI.sln │ └── source │ │ └── RothschildHouse.GUI.PaymentGateway │ │ ├── App.razor │ │ ├── Pages │ │ ├── Authentication.razor │ │ ├── Counter.razor │ │ ├── FetchData.razor │ │ ├── Index.razor │ │ ├── LoginCallback.razor │ │ └── LoginControl.razor │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── RothschildHouse.GUI.PaymentGateway.csproj │ │ ├── RothschildHouse.GUI.PaymentGateway.sln │ │ ├── Shared │ │ ├── MainLayout.razor │ │ └── NavMenu.razor │ │ ├── _Imports.razor │ │ └── wwwroot │ │ ├── appsettings.json │ │ ├── favicon.ico │ │ ├── index.html │ │ └── sample-data │ │ └── weather.json │ ├── RothschildHouse.backup │ ├── RothschildHouse.sln │ ├── mock │ │ └── RothschildHouse.Mock.Transactions │ │ │ ├── Mocks.cs │ │ │ ├── Program.cs │ │ │ ├── RothschildHouse.Mock.Transactions.csproj │ │ │ ├── RothschildHouseClient.cs │ │ │ └── appsettings.json │ ├── seed │ │ └── RothschildHouse.Seed.PaymentGateway │ │ │ ├── Helpers │ │ │ └── DbContextHelper.cs │ │ │ ├── Program.cs │ │ │ ├── RothschildHouse.Seed.PaymentGateway.csproj │ │ │ ├── Seeds │ │ │ ├── ClientApplications.cs │ │ │ ├── Countries.cs │ │ │ ├── Currencies.cs │ │ │ ├── PersonCustomers.cs │ │ │ ├── VCardTypes.cs │ │ │ ├── VCustomerTypes.cs │ │ │ ├── VTransactionStatuses.cs │ │ │ └── VTransactionTypes.cs │ │ │ └── appsettings.json │ ├── source │ │ ├── RothschildHouse.API.Notifications │ │ │ ├── Controllers │ │ │ │ └── NotificationsController.cs │ │ │ ├── HubMethods.cs │ │ │ ├── Hubs │ │ │ │ └── TransactionsHub.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── RothschildHouse.API.Notifications.csproj │ │ │ ├── Services │ │ │ │ └── TransactionReceiverService.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── RothschildHouse.API.PaymentGateway │ │ │ ├── Controllers │ │ │ │ └── PaymentGatewayController.cs │ │ │ ├── Models │ │ │ │ └── Extensions.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── RothschildHouse.API.PaymentGateway.csproj │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── RothschildHouse.API.Reports │ │ │ ├── Controllers │ │ │ │ └── ReportsController.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── RothschildHouse.API.Reports.csproj │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── RothschildHouse.API.SearchEngine │ │ │ ├── Controllers │ │ │ │ └── SearchEngineController.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── RothschildHouse.API.SearchEngine.csproj │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── RothschildHouse.Application.Core │ │ │ ├── Common │ │ │ │ ├── Contracts │ │ │ │ │ ├── IListResponse.cs │ │ │ │ │ ├── IPagedResponse.cs │ │ │ │ │ ├── IResponse.cs │ │ │ │ │ ├── IRothschildHouseDbContext.cs │ │ │ │ │ └── ISingleResponse.cs │ │ │ │ ├── CreatedResponse.cs │ │ │ │ ├── ListItem.cs │ │ │ │ ├── ListResponse.cs │ │ │ │ ├── PagedResponse.cs │ │ │ │ ├── Response.cs │ │ │ │ └── SingleResponse.cs │ │ │ ├── ConfigureServices.cs │ │ │ ├── DateTimeExtensions.cs │ │ │ ├── Features │ │ │ │ ├── Cards │ │ │ │ │ └── Queries │ │ │ │ │ │ ├── GetCard.cs │ │ │ │ │ │ ├── GetCards.cs │ │ │ │ │ │ └── GetCardsViewBag.cs │ │ │ │ ├── ClientApplications │ │ │ │ │ └── Queries │ │ │ │ │ │ ├── GetClientApplication.cs │ │ │ │ │ │ └── GetClientApplications.cs │ │ │ │ ├── Countries │ │ │ │ │ └── Queries │ │ │ │ │ │ ├── GetCountries.cs │ │ │ │ │ │ └── GetCountry.cs │ │ │ │ ├── Currencies │ │ │ │ │ └── Queries │ │ │ │ │ │ ├── GetCurrencies.cs │ │ │ │ │ │ └── GetCurrency.cs │ │ │ │ ├── Customers │ │ │ │ │ └── Queries │ │ │ │ │ │ ├── GetCustomer.cs │ │ │ │ │ │ ├── GetCustomers.cs │ │ │ │ │ │ └── GetCustomersViewBag.cs │ │ │ │ └── Transactions │ │ │ │ │ ├── Commands │ │ │ │ │ └── ProcessTransaction.cs │ │ │ │ │ ├── NotificationHandlers │ │ │ │ │ └── TransactionProcessedNotificationHandler.cs │ │ │ │ │ └── Queries │ │ │ │ │ ├── GetTransaction.cs │ │ │ │ │ ├── GetTransactions.cs │ │ │ │ │ └── GetTransactionsViewBag.cs │ │ │ ├── IQueryableExtensions.cs │ │ │ ├── IRothschildHouseDbContextQueries.cs │ │ │ └── RothschildHouse.Application.Core.csproj │ │ ├── RothschildHouse.Domain.Core │ │ │ ├── Common │ │ │ │ ├── AuditableEntity.cs │ │ │ │ ├── Contracts │ │ │ │ │ ├── IAuditableEntity.cs │ │ │ │ │ └── IEntity.cs │ │ │ │ └── Entity.cs │ │ │ ├── Entities │ │ │ │ ├── Card.cs │ │ │ │ ├── ClientApplication.cs │ │ │ │ ├── Company.cs │ │ │ │ ├── Country.cs │ │ │ │ ├── Currency.cs │ │ │ │ ├── Customer.cs │ │ │ │ ├── EnumDescription.cs │ │ │ │ ├── Person.cs │ │ │ │ ├── Transaction.cs │ │ │ │ ├── TransactionLog.cs │ │ │ │ ├── VCardType.cs │ │ │ │ ├── VTransactionStatus.cs │ │ │ │ └── VTransactionType.cs │ │ │ ├── Enums │ │ │ │ ├── CardType.cs │ │ │ │ ├── CustomerType.cs │ │ │ │ ├── TransactionStatus.cs │ │ │ │ └── TransactionType.cs │ │ │ ├── Exceptions │ │ │ │ └── RothschildHouseException.cs │ │ │ ├── Notifications │ │ │ │ ├── CardCreationNotification.cs │ │ │ │ └── TransactionProcessedNotification.cs │ │ │ └── RothschildHouse.Domain.Core.csproj │ │ ├── RothschildHouse.GUI.PaymentGateway │ │ │ ├── App.razor │ │ │ ├── Extensions.cs │ │ │ ├── Pages │ │ │ │ ├── Card.razor │ │ │ │ ├── CardDetails.razor │ │ │ │ ├── ClientApplication.razor │ │ │ │ ├── ClientApplicationDetails.razor │ │ │ │ ├── Country.razor │ │ │ │ ├── Currency.razor │ │ │ │ ├── Customer.razor │ │ │ │ ├── CustomerDetails.razor │ │ │ │ ├── Index.razor │ │ │ │ ├── Transaction.razor │ │ │ │ └── TransactionDetails.razor │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── RothschildHouse.GUI.PaymentGateway.csproj │ │ │ ├── Shared │ │ │ │ ├── MainLayout.razor │ │ │ │ └── NavMenu.razor │ │ │ ├── _Imports.razor │ │ │ └── wwwroot │ │ │ │ ├── appsettings.json │ │ │ │ ├── favicon.ico │ │ │ │ └── index.html │ │ ├── RothschildHouse.Infrastructure.Core │ │ │ ├── ConfigureServices.cs │ │ │ ├── MediatRExtensions.cs │ │ │ ├── Persistence │ │ │ │ ├── Configurations │ │ │ │ │ ├── CardConfiguration.cs │ │ │ │ │ ├── ClientApplicationConfiguration.cs │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── AuditableEntityConfiguration.cs │ │ │ │ │ │ └── EntityConfiguration.cs │ │ │ │ │ ├── CompanyConfiguration.cs │ │ │ │ │ ├── CountryConfiguration.cs │ │ │ │ │ ├── CurrencyConfiguration.cs │ │ │ │ │ ├── CustomerConfiguration.cs │ │ │ │ │ ├── EnumDescriptionConfiguration.cs │ │ │ │ │ ├── PersonConfiguration.cs │ │ │ │ │ ├── TransactionConfiguration.cs │ │ │ │ │ ├── TransactionLogConfiguration.cs │ │ │ │ │ ├── VCardTypeConfiguration.cs │ │ │ │ │ ├── VTransactionStatusConfiguration.cs │ │ │ │ │ └── VTransactionTypeConfiguration.cs │ │ │ │ ├── IQueryableExtensions.cs │ │ │ │ └── RothschildHouseDbContext.cs │ │ │ └── RothschildHouse.Infrastructure.Core.csproj │ │ └── RothschildHouse.Library.Common │ │ │ ├── Clients │ │ │ ├── ContentTypes.cs │ │ │ ├── Models │ │ │ │ ├── Common │ │ │ │ │ ├── CreatedResponse.cs │ │ │ │ │ ├── ListItem.cs │ │ │ │ │ ├── ListResponse.cs │ │ │ │ │ ├── PagedResponse.cs │ │ │ │ │ ├── Response.cs │ │ │ │ │ └── SingleResponse.cs │ │ │ │ ├── PaymentGateway │ │ │ │ │ ├── CardDetailsModel.cs │ │ │ │ │ ├── CardItemModel.cs │ │ │ │ │ ├── ClientApplicationDetailsModel.cs │ │ │ │ │ ├── ClientApplicationItemModel.cs │ │ │ │ │ ├── CountryDetailsModel.cs │ │ │ │ │ ├── CountryItemModel.cs │ │ │ │ │ ├── CurrencyDetailsModel.cs │ │ │ │ │ ├── CurrencyItemModel.cs │ │ │ │ │ ├── CustomerDetailsModel.cs │ │ │ │ │ ├── CustomerItemModel.cs │ │ │ │ │ ├── GetCardsRequest.cs │ │ │ │ │ ├── GetCardsViewBagResponse.cs │ │ │ │ │ ├── GetClientApplicationsRequest.cs │ │ │ │ │ ├── GetCountriesRequest.cs │ │ │ │ │ ├── GetCurrenciesRequest.cs │ │ │ │ │ ├── GetCustomersRequest.cs │ │ │ │ │ ├── GetCustomersViewBagRespose.cs │ │ │ │ │ ├── GetTransactionsRequest.cs │ │ │ │ │ ├── GetTransactionsViewBagRespose.cs │ │ │ │ │ ├── TransactionDetailsModel.cs │ │ │ │ │ ├── TransactionItemModel.cs │ │ │ │ │ └── TransactionLogDetailsModel.cs │ │ │ │ ├── Reports │ │ │ │ │ ├── MonthlySaleItemModel.cs │ │ │ │ │ ├── MonthlySalesResponse.cs │ │ │ │ │ ├── YearlySaleItemModel.cs │ │ │ │ │ └── YearlySalesResponse.cs │ │ │ │ └── SearchEngine │ │ │ │ │ └── IndexSaleRequest.cs │ │ │ ├── PaymentGatewayClient.cs │ │ │ ├── ReportsClient.cs │ │ │ └── SearchEngineClient.cs │ │ │ ├── NoSql │ │ │ ├── Documents │ │ │ │ └── SaleDocument.cs │ │ │ ├── SaleServiceSettings.cs │ │ │ └── SalesService.cs │ │ │ ├── Queue │ │ │ ├── Messages │ │ │ │ ├── PublishTransactionMessage.cs │ │ │ │ └── PublishTransactionResult.cs │ │ │ ├── MqClientSettings.cs │ │ │ └── TransactionMqClient.cs │ │ │ └── RothschildHouse.Library.Common.csproj │ └── tp │ │ └── RothschildHouse.TP.CityBank │ │ ├── CityBankPaymentServicesClient.cs │ │ ├── Contracts │ │ ├── DataContracts │ │ │ ├── ProcessPaymentRequest.cs │ │ │ └── ProcessPaymentResponse.cs │ │ └── ICityBankPaymentServicesClient.cs │ │ ├── Data │ │ ├── Card.cs │ │ └── Database.cs │ │ ├── GlobalJsonSerializerOptions.cs │ │ ├── Payloads │ │ ├── Avs │ │ │ ├── BillingAddressPayload.cs │ │ │ ├── CardPayload.cs │ │ │ ├── CityBankAvsPayload.cs │ │ │ ├── Mocks │ │ │ │ └── AvsMocks.cs │ │ │ └── PaymentMethodPayload.cs │ │ ├── Cvv2 │ │ │ ├── Cvv2Payload.cs │ │ │ └── Mocks │ │ │ │ └── Cvv2Mocks.cs │ │ └── ProcessPayment │ │ │ └── Mocks │ │ │ ├── ProcessPaymentAuthorizationMocks.cs │ │ │ └── ProcessPaymentCaptureMocks.cs │ │ ├── RothschildHouse.TP.CityBank.csproj │ │ └── ServicesExtensions.cs │ ├── RothschildHouse │ ├── RothschildHouse.sln │ ├── mocks │ │ └── RothschildHouse.Mock.PaymentTransactions │ │ │ ├── MockSettings.cs │ │ │ ├── Mocks.cs │ │ │ ├── Program.cs │ │ │ ├── RothschildHouse.Mock.PaymentTransactions.csproj │ │ │ ├── RothschildHouseClient.cs │ │ │ └── appsettings.json │ ├── seed │ │ └── RothschildHouse.Seed.Dbo │ │ │ ├── DbContextHelper.cs │ │ │ ├── Program.cs │ │ │ ├── RothschildHouse.Seed.Dbo.csproj │ │ │ ├── Seeds │ │ │ ├── ClientApplications.cs │ │ │ ├── Countries.cs │ │ │ ├── Currencies.cs │ │ │ ├── PersonCustomers.cs │ │ │ ├── VCardTypes.cs │ │ │ ├── VCustomerTypes.cs │ │ │ ├── VTransactionStatuses.cs │ │ │ └── VTransactionTypes.cs │ │ │ └── appsettings.json │ ├── source │ │ ├── RothschildHouse.API.Notifications │ │ │ ├── Controllers │ │ │ │ └── NotificationsController.cs │ │ │ ├── HubMethods.cs │ │ │ ├── Hubs │ │ │ │ └── TransactionsHub.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── RothschildHouse.API.Notifications.csproj │ │ │ ├── Services │ │ │ │ └── TransactionReceiverService.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── RothschildHouse.API.PaymentGateway │ │ │ ├── Controllers │ │ │ │ └── PaymentGatewayController.cs │ │ │ ├── Models │ │ │ │ └── Extensions.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── RothschildHouse.API.PaymentGateway.csproj │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── RothschildHouse.API.SearchEngine │ │ │ ├── Controllers │ │ │ │ ├── ReportsController.cs │ │ │ │ └── SearchEngineController.cs │ │ │ ├── Models │ │ │ │ ├── MonthlySaleItemModel.cs │ │ │ │ ├── MonthlySalesResponse.cs │ │ │ │ ├── YearlySaleItemModel.cs │ │ │ │ └── YearlySalesResponse.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── RothschildHouse.API.SearchEngine.csproj │ │ │ ├── Services │ │ │ │ ├── Documents │ │ │ │ │ └── SaleDocument.cs │ │ │ │ ├── SaleService.cs │ │ │ │ └── SaleServiceSettings.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── RothschildHouse.Application │ │ │ ├── Clients │ │ │ │ └── SearchEngine │ │ │ │ │ ├── IndexSaleRequest.cs │ │ │ │ │ └── SearchEngineClient.cs │ │ │ ├── Common │ │ │ │ ├── Contracts │ │ │ │ │ └── IRothschildHouseDbContext.cs │ │ │ │ ├── CreatedResponse.cs │ │ │ │ ├── IRothschildHouseDbContextQueries.cs │ │ │ │ ├── ListItem.cs │ │ │ │ ├── ListResponse.cs │ │ │ │ ├── PagedResponse.cs │ │ │ │ ├── Response.cs │ │ │ │ └── SingleResponse.cs │ │ │ ├── ConfigureServices.cs │ │ │ ├── DateTimeExtensions.cs │ │ │ ├── Features │ │ │ │ ├── Cards │ │ │ │ │ └── Queries │ │ │ │ │ │ ├── GetCard.cs │ │ │ │ │ │ ├── GetCards.cs │ │ │ │ │ │ └── GetCardsViewBag.cs │ │ │ │ ├── ClientApplications │ │ │ │ │ └── Queries │ │ │ │ │ │ ├── GetClientApplication.cs │ │ │ │ │ │ └── GetClientApplications.cs │ │ │ │ ├── Countries │ │ │ │ │ └── Queries │ │ │ │ │ │ ├── GetCountriesQuery.cs │ │ │ │ │ │ └── GetCountryQuery.cs │ │ │ │ ├── Currencies │ │ │ │ │ └── Queries │ │ │ │ │ │ ├── GetCurrencies.cs │ │ │ │ │ │ └── GetCurrency.cs │ │ │ │ ├── Customers │ │ │ │ │ └── Queries │ │ │ │ │ │ ├── GetCustomer.cs │ │ │ │ │ │ ├── GetCustomersQuery.cs │ │ │ │ │ │ └── GetCustomersViewBag.cs │ │ │ │ └── Transactions │ │ │ │ │ ├── Commands │ │ │ │ │ └── ProcessTransaction.cs │ │ │ │ │ ├── NotificationHandlers │ │ │ │ │ └── TransactionProcessedNotificationHandler.cs │ │ │ │ │ └── Queries │ │ │ │ │ ├── GetTransaction.cs │ │ │ │ │ ├── GetTransactions.cs │ │ │ │ │ └── GetTransactionsViewBag.cs │ │ │ ├── IQueryableExtensions.cs │ │ │ ├── Models │ │ │ │ └── TransactionItemModel.cs │ │ │ ├── Queue │ │ │ │ ├── Messages │ │ │ │ │ ├── PublishTransactionMessage.cs │ │ │ │ │ └── PublishTransactionResult.cs │ │ │ │ ├── MqClientSettings.cs │ │ │ │ └── TransactionMqClient.cs │ │ │ └── RothschildHouse.Application.csproj │ │ ├── RothschildHouse.Domain │ │ │ ├── Common │ │ │ │ ├── AuditableEntity.cs │ │ │ │ └── Entity.cs │ │ │ ├── Entities │ │ │ │ ├── Card.cs │ │ │ │ ├── ClientApplication.cs │ │ │ │ ├── Company.cs │ │ │ │ ├── Country.cs │ │ │ │ ├── Currency.cs │ │ │ │ ├── Customer.cs │ │ │ │ ├── EnumDescription.cs │ │ │ │ ├── Person.cs │ │ │ │ ├── Transaction.cs │ │ │ │ ├── TransactionLog.cs │ │ │ │ ├── VCardType.cs │ │ │ │ ├── VTransactionStatus.cs │ │ │ │ └── VTransactionType.cs │ │ │ ├── Enums │ │ │ │ ├── CardType.cs │ │ │ │ ├── CustomerType.cs │ │ │ │ ├── TransactionStatus.cs │ │ │ │ └── TransactionType.cs │ │ │ ├── Exceptions │ │ │ │ └── RothschildHouseException.cs │ │ │ ├── Notifications │ │ │ │ ├── CardCreationNotification.cs │ │ │ │ └── TransactionProcessedNotification.cs │ │ │ └── RothschildHouse.Domain.csproj │ │ └── RothschildHouse.Infrastructure │ │ │ ├── ConfigureServices.cs │ │ │ ├── MediatRExtensions.cs │ │ │ ├── Persistence │ │ │ ├── Configurations │ │ │ │ ├── CardConfiguration.cs │ │ │ │ ├── ClientApplicationConfiguration.cs │ │ │ │ ├── Common │ │ │ │ │ ├── AuditableEntityConfiguration.cs │ │ │ │ │ └── EntityConfiguration.cs │ │ │ │ ├── CompanyConfiguration.cs │ │ │ │ ├── CountryConfiguration.cs │ │ │ │ ├── CurrencyConfiguration.cs │ │ │ │ ├── CustomerConfiguration.cs │ │ │ │ ├── EnumDescriptionConfiguration.cs │ │ │ │ ├── PersonConfiguration.cs │ │ │ │ ├── TransactionConfiguration.cs │ │ │ │ ├── TransactionLogConfiguration.cs │ │ │ │ ├── VCardTypeConfiguration.cs │ │ │ │ ├── VTransactionStatusConfiguration.cs │ │ │ │ └── VTransactionTypeConfiguration.cs │ │ │ └── RothschildHouseDbContext.cs │ │ │ └── RothschildHouse.Infrastructure.csproj │ └── tp │ │ └── RothschildHouse.Clients.CityBank │ │ ├── Card.cs │ │ ├── CityBankPaymentServicesClient.cs │ │ ├── ConfigureServices.cs │ │ ├── Database.cs │ │ ├── GlobalJsonSerializerOptions.cs │ │ ├── ICityBankPaymentServicesClient.cs │ │ ├── Models.cs │ │ ├── Payloads │ │ ├── Avs │ │ │ ├── CityBankAvsPayload.cs │ │ │ └── Mocks │ │ │ │ └── AvsMocks.cs │ │ ├── Cvv2 │ │ │ ├── Cvv2Payload.cs │ │ │ └── Mocks │ │ │ │ └── Cvv2Mocks.cs │ │ └── ProcessPayment │ │ │ ├── Mocks │ │ │ └── ProcesPaymentMocks.cs │ │ │ ├── ProcessPaymentAuthorization.cs │ │ │ └── ProcessPaymentCapture.cs │ │ └── RothschildHouse.Clients.CityBank.csproj │ └── rothschild-house-gui │ ├── .editorconfig │ ├── .gitignore │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── components │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ └── txn-list │ │ │ │ ├── txn-list-datasource.ts │ │ │ │ ├── txn-list.component.css │ │ │ │ ├── txn-list.component.html │ │ │ │ └── txn-list.component.ts │ │ └── services │ │ │ ├── common.ts │ │ │ ├── payment-gateway-client.service.ts │ │ │ └── reports-client.service.ts │ ├── assets │ │ └── .gitkeep │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.css │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── README.md └── _config.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/.gitignore -------------------------------------------------------------------------------- /Legacy1/Resources/Database/00 - Database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/Database/00 - Database.sql -------------------------------------------------------------------------------- /Legacy1/Resources/Database/01 - Schemas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/Database/01 - Schemas.sql -------------------------------------------------------------------------------- /Legacy1/Resources/Database/02 - Tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/Database/02 - Tables.sql -------------------------------------------------------------------------------- /Legacy1/Resources/Database/03 - Constraints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/Database/03 - Constraints.sql -------------------------------------------------------------------------------- /Legacy1/Resources/Database/04 - Functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/Database/04 - Functions.sql -------------------------------------------------------------------------------- /Legacy1/Resources/Database/05 - Views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/Database/05 - Views.sql -------------------------------------------------------------------------------- /Legacy1/Resources/Database/06 - Rows.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/Database/06 - Rows.sql -------------------------------------------------------------------------------- /Legacy1/Resources/Database/deploy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/Database/deploy.bat -------------------------------------------------------------------------------- /Legacy1/Resources/Database/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/Database/readme.md -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/Database/RothschildHouse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/Database/RothschildHouse.sql -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/Database/Views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/Database/Views.sql -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/EntityModel/EntityModel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/EntityModel/EntityModel.sln -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/EntityModel/RothschildHouse/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/EntityModel/RothschildHouse/Program.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/EntityModel/RothschildHouse/RothschildHouse.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/EntityModel/RothschildHouse/RothschildHouse.csproj -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Client/Program.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Client/RothschildHouse.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Client/RothschildHouse.Client.csproj -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Config.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Domain/IdentityDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Domain/IdentityDbContext.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Domain/IdentityDbContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Domain/IdentityDbContextExtensions.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Domain/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Domain/User.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Domain/UserClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Domain/UserClaim.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Program.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Properties/launchSettings.json -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/RothschildHouse.Identity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/RothschildHouse.Identity.csproj -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/Startup.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/appsettings.Development.json -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/appsettings.json -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.Identity/tempkey.rsa -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse.sln -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Controllers/TransactionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Controllers/TransactionController.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Domain/CreditCardExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Domain/CreditCardExtensions.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Domain/DomainDrivenDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Domain/DomainDrivenDesign.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Domain/DomainDrivenDesignExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Domain/DomainDrivenDesignExtensions.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Program.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Properties/launchSettings.json -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Requests/PostPaymentRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Requests/PostPaymentRequest.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Responses/PaymentResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Responses/PaymentResponse.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/RothschildHouse.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/RothschildHouse.csproj -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/RothschildHouse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/RothschildHouse.xml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/Startup.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/appsettings.Development.json -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse.old/RothschildHouse/appsettings.json -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/3p/RothschildHouse.3P.CityBank/CityBankPaymentServicesClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/3p/RothschildHouse.3P.CityBank/CityBankPaymentServicesClient.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/3p/RothschildHouse.3P.CityBank/Data/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/3p/RothschildHouse.3P.CityBank/Data/Card.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/3p/RothschildHouse.3P.CityBank/Data/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/3p/RothschildHouse.3P.CityBank/Data/Database.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/3p/RothschildHouse.3P.CityBank/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/3p/RothschildHouse.3P.CityBank/Extensions.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/3p/RothschildHouse.3P.CityBank/Models/ProcessPaymentRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/3p/RothschildHouse.3P.CityBank/Models/ProcessPaymentRequest.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/3p/RothschildHouse.3P.CityBank/Models/ProcessPaymentResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/3p/RothschildHouse.3P.CityBank/Models/ProcessPaymentResponse.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/3p/RothschildHouse.3P.CityBank/RothschildHouse.3P.CityBank.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/3p/RothschildHouse.3P.CityBank/RothschildHouse.3P.CityBank.csproj -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/RothschildHouse.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/RothschildHouse.sln -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/mock/RothschildHouse.Mock.PaymentTransactions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/mock/RothschildHouse.Mock.PaymentTransactions/Program.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.PaymentGateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.PaymentGateway/Program.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.PaymentGateway/Seeds/Currencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.PaymentGateway/Seeds/Currencies.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.PaymentGateway/Seeds/PersonCustomers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.PaymentGateway/Seeds/PersonCustomers.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.PaymentGateway/Seeds/VCardTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.PaymentGateway/Seeds/VCardTypes.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.PaymentGateway/Seeds/VCustomerTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.PaymentGateway/Seeds/VCustomerTypes.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Domain/Common/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Domain/Common/Entity.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Domain/Entities/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Domain/Entities/Card.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Domain/Enums/CardType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Domain/Enums/CardType.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Features/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Features/Extensions.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/HubMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/HubMethods.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Policies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Policies.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Program.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/appsettings.json -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Config.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Data/Models/RothschildHouseUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Data/Models/RothschildHouseUser.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Data/RothschildHouseDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Data/RothschildHouseDbContext.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/HostingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/HostingExtensions.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Account/Login/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Account/Login/Index.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Account/Login/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Account/Login/InputModel.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Account/Login/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Account/Login/ViewModel.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Account/Logout/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Account/Logout/Index.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/All.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/All.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/All.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/All.cshtml.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/Consent.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/Consent.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/Consent.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/Consent.cshtml.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/ConsentOptions.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/Index.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/Index.cshtml.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/InputModel.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/ViewModel.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Ciba/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Consent/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Consent/ConsentOptions.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Consent/Index.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Consent/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Consent/Index.cshtml.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Consent/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Consent/InputModel.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Consent/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Consent/ViewModel.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/DeviceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/DeviceOptions.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/Index.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/Index.cshtml.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/InputModel.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/Success.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/Success.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/Success.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/Success.cshtml.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/ViewModel.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Device/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Diagnostics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Diagnostics/Index.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Diagnostics/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Diagnostics/Index.cshtml.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Diagnostics/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Diagnostics/ViewModel.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Extensions.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Grants/Index.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Grants/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Grants/Index.cshtml.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Grants/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Grants/ViewModel.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Home/Error/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Home/Error/Index.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Home/Error/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Home/Error/Index.cshtml.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Home/Error/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Home/Error/ViewModel.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Index.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Redirect/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Redirect/Index.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Redirect/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Redirect/Index.cshtml.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Shared/_Nav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/Shared/_Nav.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Program.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Properties/launchSettings.json -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/RothschildHouse.Identity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/RothschildHouse.Identity.csproj -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/SeedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/SeedData.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Services/RothschildHouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Services/RothschildHouse.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Tokens/RothschildHouseRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/Tokens/RothschildHouseRoles.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/appsettings.json -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/buildschema.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/buildschema.bat -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/css/site.css -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/css/site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/css/site.scss -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/duende-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/duende-logo.svg -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/js/signin-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/js/signin-redirect.js -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/js/signout-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/js/signout-redirect.js -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Identity/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Library.Common/Authorization/Roles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.Library.Common/Authorization/Roles.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/App.razor -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Extensions.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/About.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/About.razor -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/Card.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/Card.razor -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/Counter.razor -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/Customer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/Customer.razor -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/Error.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/FetchData.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/FetchData.razor -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/Index.razor -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Pages/_Host.cshtml -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Program.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Resources/Index.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Resources/Index.resx -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Resources/NavMenu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Resources/NavMenu.resx -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/Shared/NavMenu.razor -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/SupportedCultures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/SupportedCultures.cs -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/_Imports.razor -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/appsettings.json -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/wwwroot/css/site.css -------------------------------------------------------------------------------- /Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/wwwroot/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Resources/PaymentGateway/RothschildHouse/source/RothschildHouse.WebUI.PaymentGateway/wwwroot/favicon.png -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.IntegrationTests/Helpers/ContentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.IntegrationTests/Helpers/ContentHelper.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.IntegrationTests/Helpers/TokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.IntegrationTests/Helpers/TokenHelper.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.IntegrationTests/Mocks/ClientSettingsMocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.IntegrationTests/Mocks/ClientSettingsMocker.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.IntegrationTests/TestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.IntegrationTests/TestFixture.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.UnitTests/Mocks/ClaimsPrincipalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.UnitTests/Mocks/ClaimsPrincipalExtensions.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.UnitTests/Mocks/DbContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.UnitTests/Mocks/DbContextExtensions.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.UnitTests/Mocks/DbContextMocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.UnitTests/Mocks/DbContextMocker.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.UnitTests/Mocks/ServiceMocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.UnitTests/Mocks/ServiceMocker.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.UnitTests/OnlineStore.API.Common.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common.UnitTests/OnlineStore.API.Common.UnitTests.csproj -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/ApiUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/ApiUrl.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/ApiUrlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/ApiUrlExtensions.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/Contracts/IRothschildHouseIdentityClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/Contracts/IRothschildHouseIdentityClient.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/Contracts/IRothschildHousePaymentClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/Contracts/IRothschildHousePaymentClient.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/IdentityServerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/IdentityServerHelper.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/Models/HttpResponseMessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/Models/HttpResponseMessageExtensions.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/Models/IRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/Models/IRequest.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/Models/PaymentResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/Models/PaymentResponse.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/Models/PostPaymentRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/Models/PostPaymentRequest.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/Models/RequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/Models/RequestExtensions.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/RothschildHouseIdentityClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/RothschildHouseIdentityClient.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/RothschildHouseIdentitySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/RothschildHouseIdentitySettings.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/RothschildHousePaymentClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/RothschildHousePaymentClient.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/RothschildHousePaymentSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Clients/RothschildHousePaymentSettings.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Controllers/CommonController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Controllers/CommonController.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Controllers/OnlineStoreController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Controllers/OnlineStoreController.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Filters/OnlineStoreActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Filters/OnlineStoreActionFilter.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/OnlineStore.API.Common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/OnlineStore.API.Common -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/OnlineStore.API.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/OnlineStore.API.Common.csproj -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/OnlineStore.API.Common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/OnlineStore.API.Common.xml -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Program.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Properties/launchSettings.json -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Responses/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Responses/Extensions.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/Startup.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/appsettings.Development.json -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Common/appsettings.json -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Config.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Domain/IdentityDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Domain/IdentityDbContext.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Domain/IdentityDbContextExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Domain/IdentityDbContextExtentions.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Domain/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Domain/User.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Domain/UserClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Domain/UserClaim.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/OnlineStore.API.Identity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/OnlineStore.API.Identity.csproj -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Program.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Properties/launchSettings.json -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Services/ProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Services/ProfileService.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Startup.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Validation/ResourceOwnerPasswordValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/Validation/ResourceOwnerPasswordValidator.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/appsettings.Development.json -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/appsettings.json -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Identity/tempkey.rsa -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales.IntegrationTests/SalesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales.IntegrationTests/SalesTests.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales.UnitTests/Mocks/IdentityMocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales.UnitTests/Mocks/IdentityMocker.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales.UnitTests/Mocks/PaymentGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales.UnitTests/Mocks/PaymentGateway.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales.UnitTests/OnlineStore.API.Sales.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales.UnitTests/OnlineStore.API.Sales.UnitTests.csproj -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales.UnitTests/SalesControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales.UnitTests/SalesControllerTests.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Controllers/SalesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Controllers/SalesController.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/OnlineStore.API.Sales.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/OnlineStore.API.Sales.csproj -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/OnlineStore.API.Sales.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/OnlineStore.API.Sales.xml -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/PolicyRequirements/CustomerPolicyRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/PolicyRequirements/CustomerPolicyRequirement.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Program.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Properties/launchSettings.json -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Requests/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Requests/Extensions.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Requests/GetOrdersParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Requests/GetOrdersParameters.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Requests/OrderDetailRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Requests/OrderDetailRequest.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Requests/PostOrderRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Requests/PostOrderRequest.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Security/Policies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Security/Policies.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Security/Roles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Security/Roles.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/Startup.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/appsettings.Development.json -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Sales/appsettings.json -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse.IntegrationTests/WarehouseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse.IntegrationTests/WarehouseTests.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse.UnitTests/Mocks/IdentityMocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse.UnitTests/Mocks/IdentityMocker.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse.UnitTests/WarehouseControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse.UnitTests/WarehouseControllerTests.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Controllers/WarehouseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Controllers/WarehouseController.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/OnlineStore.API.Warehouse.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/OnlineStore.API.Warehouse.csproj -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/OnlineStore.API.Warehouse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/OnlineStore.API.Warehouse.xml -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/PolicyRequirements/PostProductPolicyRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/PolicyRequirements/PostProductPolicyRequirement.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Program.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Properties/launchSettings.json -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Requests/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Requests/Extensions.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Requests/GetProductInventoryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Requests/GetProductInventoryRequest.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Requests/GetProductsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Requests/GetProductsRequest.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Requests/PostProductRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Requests/PostProductRequest.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Requests/PutProductUnitPriceRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Requests/PutProductUnitPriceRequest.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Security/Policies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Security/Policies.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Security/Roles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Security/Roles.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/Startup.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/appsettings.Development.json -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.API.Warehouse/appsettings.json -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Common/Helpers/LoggingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Common/Helpers/LoggingHelper.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Common/OnlineStore.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Common/OnlineStore.Common.csproj -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/AddOrderWithDiscontinuedProductException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/AddOrderWithDiscontinuedProductException.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Contracts/IHumanResourcesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Contracts/IHumanResourcesService.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Contracts/ISalesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Contracts/ISalesService.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Contracts/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Contracts/IService.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Contracts/IWarehouseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Contracts/IWarehouseService.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/DuplicatedProductNameException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/DuplicatedProductNameException.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/ForeignKeyDependencyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/ForeignKeyDependencyException.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/HumanResourcesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/HumanResourcesService.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/InvalidQuantityException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/InvalidQuantityException.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/NonExistingProductException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/NonExistingProductException.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/OnlineStoreException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/OnlineStoreException.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Requests/CreateOrderRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Requests/CreateOrderRequest.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Requests/ICreateOrderRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Requests/ICreateOrderRequest.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Requests/IRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Requests/IRequest.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/IListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/IListResponse.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/IPagedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/IPagedResponse.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/IResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/IResponse.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/ISingleResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/ISingleResponse.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/ListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/ListResponse.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/PagedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/PagedResponse.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/Response.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/ResponseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/ResponseExtensions.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/SingleResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Responses/SingleResponse.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/SalesDisplays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/SalesDisplays.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/SalesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/SalesService.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/Service.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/WarehouseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Business/WarehouseService.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Dbo/ChangeLogConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Dbo/ChangeLogConfiguration.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Dbo/ChangeLogExclusionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Dbo/ChangeLogExclusionConfiguration.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Dbo/CountryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Dbo/CountryConfiguration.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Dbo/CountryCurrencyConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Dbo/CountryCurrencyConfiguration.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Dbo/CurrencyConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Dbo/CurrencyConfiguration.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Dbo/EventLogConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Dbo/EventLogConfiguration.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Sales/CustomerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Sales/CustomerConfiguration.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Sales/OrderDetailConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Sales/OrderDetailConfiguration.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Sales/OrderHeaderConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Sales/OrderHeaderConfiguration.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Sales/OrderStatusConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Sales/OrderStatusConfiguration.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Sales/OrderSummaryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Sales/OrderSummaryConfiguration.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Sales/PaymentMethodConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Sales/PaymentMethodConfiguration.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Sales/ShipperConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Sales/ShipperConfiguration.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Warehouse/LocationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Warehouse/LocationConfiguration.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Warehouse/ProductConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Configurations/Warehouse/ProductConfiguration.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/CustomerOrderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/CustomerOrderInfo.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/DataContracts/OrderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/DataContracts/OrderInfo.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Dbo/ChangeLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Dbo/ChangeLog.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Dbo/ChangeLogExclusion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Dbo/ChangeLogExclusion.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Dbo/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Dbo/Country.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Dbo/CountryCurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Dbo/CountryCurrency.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Dbo/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Dbo/Currency.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Dbo/EventLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Dbo/EventLog.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/HumanResources/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/HumanResources/Employee.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/HumanResources/EmployeeAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/HumanResources/EmployeeAddress.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/HumanResources/EmployeeEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/HumanResources/EmployeeEmail.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/IAuditableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/IAuditableEntity.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/IEntity.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/IQueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/IQueryableExtensions.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/OnlineStoreDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/OnlineStoreDbContext.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/OnlineStoreDbContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/OnlineStoreDbContextExtensions.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/OnlineStoreDbContextQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/OnlineStoreDbContextQueries.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Sales/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Sales/Customer.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Sales/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Sales/OrderDetail.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Sales/OrderHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Sales/OrderHeader.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Sales/OrderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Sales/OrderStatus.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Sales/OrderSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Sales/OrderSummary.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Sales/PaymentMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Sales/PaymentMethod.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Sales/Shipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Sales/Shipper.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Warehouse/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Warehouse/Location.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Warehouse/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Warehouse/Product.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Warehouse/ProductCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Warehouse/ProductCategory.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Warehouse/ProductInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Warehouse/ProductInventory.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Warehouse/ProductUnitPrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/Domain/Warehouse/ProductUnitPrice.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/IUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/IUserInfo.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/OnlineStore.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/OnlineStore.Core.csproj -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Core/UserInfo.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Mocker/DbContextMocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Mocker/DbContextMocker.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Mocker/OnlineStore.Mocker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Mocker/OnlineStore.Mocker.csproj -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Mocker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Mocker/Program.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Mocker/ServiceMocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Mocker/ServiceMocker.cs -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.Mocker/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.Mocker/appsettings.json -------------------------------------------------------------------------------- /Legacy1/Source/Backend/OnlineStore/OnlineStore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/Source/Backend/OnlineStore/OnlineStore.sln -------------------------------------------------------------------------------- /Legacy1/sales-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/sales-build.bat -------------------------------------------------------------------------------- /Legacy1/sales-integration-tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/sales-integration-tests.bat -------------------------------------------------------------------------------- /Legacy1/sales-unit-tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/sales-unit-tests.bat -------------------------------------------------------------------------------- /Legacy1/warehouse-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/warehouse-build.bat -------------------------------------------------------------------------------- /Legacy1/warehouse-integration-tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/warehouse-integration-tests.bat -------------------------------------------------------------------------------- /Legacy1/warehouse-unit-tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy1/warehouse-unit-tests.bat -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/Database/00-logins.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/Database/00-logins.sql -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/Database/01-database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/Database/01-database.sql -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/Database/02-users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/Database/02-users.sql -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/Database/03-schemas.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/Database/04-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/Database/04-tables.sql -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/Database/05-constraints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/Database/05-constraints.sql -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/Database/06-views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/Database/06-views.sql -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/Database/deploy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/Database/deploy.bat -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/EntityModel/EntityModel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/EntityModel/EntityModel.sln -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/EntityModel/RothschildHouse/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/EntityModel/RothschildHouse/Program.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/EntityModel/RothschildHouse/RothschildHouse.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/EntityModel/RothschildHouse/RothschildHouse.csproj -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.GUI/RothschildHouse.GUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.GUI/RothschildHouse.GUI.sln -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/App.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Pages/Authentication.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Pages/Authentication.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Pages/Counter.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Pages/FetchData.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Pages/FetchData.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Pages/Index.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Pages/LoginCallback.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Pages/LoginCallback.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Pages/LoginControl.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Pages/LoginControl.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Program.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Shared/MainLayout.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/Shared/NavMenu.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/_Imports.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/wwwroot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/wwwroot/appsettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.GUI/source/RothschildHouse.GUI.PaymentGateway/wwwroot/index.html -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/RothschildHouse.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/RothschildHouse.sln -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/mock/RothschildHouse.Mock.Transactions/Mocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/mock/RothschildHouse.Mock.Transactions/Mocks.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/mock/RothschildHouse.Mock.Transactions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/mock/RothschildHouse.Mock.Transactions/Program.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/mock/RothschildHouse.Mock.Transactions/RothschildHouseClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/mock/RothschildHouse.Mock.Transactions/RothschildHouseClient.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/mock/RothschildHouse.Mock.Transactions/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/mock/RothschildHouse.Mock.Transactions/appsettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/seed/RothschildHouse.Seed.PaymentGateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/seed/RothschildHouse.Seed.PaymentGateway/Program.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/seed/RothschildHouse.Seed.PaymentGateway/Seeds/Countries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/seed/RothschildHouse.Seed.PaymentGateway/Seeds/Countries.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/seed/RothschildHouse.Seed.PaymentGateway/Seeds/Currencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/seed/RothschildHouse.Seed.PaymentGateway/Seeds/Currencies.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/seed/RothschildHouse.Seed.PaymentGateway/Seeds/PersonCustomers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/seed/RothschildHouse.Seed.PaymentGateway/Seeds/PersonCustomers.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/seed/RothschildHouse.Seed.PaymentGateway/Seeds/VCardTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/seed/RothschildHouse.Seed.PaymentGateway/Seeds/VCardTypes.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/seed/RothschildHouse.Seed.PaymentGateway/Seeds/VCustomerTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/seed/RothschildHouse.Seed.PaymentGateway/Seeds/VCustomerTypes.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/seed/RothschildHouse.Seed.PaymentGateway/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/seed/RothschildHouse.Seed.PaymentGateway/appsettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Notifications/HubMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Notifications/HubMethods.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Notifications/Hubs/TransactionsHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Notifications/Hubs/TransactionsHub.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Notifications/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Notifications/Program.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Notifications/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Notifications/appsettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.PaymentGateway/Models/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.PaymentGateway/Models/Extensions.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.PaymentGateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.PaymentGateway/Program.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.PaymentGateway/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.PaymentGateway/appsettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Reports/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Reports/Program.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Reports/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Reports/Properties/launchSettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Reports/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Reports/appsettings.Development.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Reports/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.Reports/appsettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.SearchEngine/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.SearchEngine/Program.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.SearchEngine/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.API.SearchEngine/appsettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/Common/CreatedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/Common/CreatedResponse.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/Common/ListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/Common/ListItem.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/Common/ListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/Common/ListResponse.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/Common/PagedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/Common/PagedResponse.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/Common/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/Common/Response.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/Common/SingleResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/Common/SingleResponse.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/ConfigureServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/ConfigureServices.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/DateTimeExtensions.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/IQueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Application.Core/IQueryableExtensions.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Common/AuditableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Common/AuditableEntity.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Common/Contracts/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Common/Contracts/IEntity.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Common/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Common/Entity.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/Card.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/ClientApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/ClientApplication.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/Company.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/Country.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/Currency.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/Customer.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/EnumDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/EnumDescription.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/Person.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/Transaction.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/TransactionLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/TransactionLog.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/VCardType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/VCardType.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/VTransactionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/VTransactionStatus.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/VTransactionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Entities/VTransactionType.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Enums/CardType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Enums/CardType.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Enums/CustomerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Enums/CustomerType.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Enums/TransactionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Enums/TransactionStatus.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Enums/TransactionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Domain.Core/Enums/TransactionType.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/App.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Extensions.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Pages/Card.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Pages/Card.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Pages/CardDetails.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Pages/CardDetails.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Pages/Country.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Pages/Country.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Pages/Currency.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Pages/Currency.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Pages/Customer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Pages/Customer.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Pages/Index.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Pages/Transaction.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Pages/Transaction.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Program.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Shared/MainLayout.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/Shared/NavMenu.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/_Imports.razor -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/wwwroot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/wwwroot/appsettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.GUI.PaymentGateway/wwwroot/index.html -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Infrastructure.Core/ConfigureServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Infrastructure.Core/ConfigureServices.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Infrastructure.Core/MediatRExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Infrastructure.Core/MediatRExtensions.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Library.Common/Clients/ContentTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Library.Common/Clients/ContentTypes.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Library.Common/Clients/ReportsClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Library.Common/Clients/ReportsClient.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Library.Common/NoSql/SaleServiceSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Library.Common/NoSql/SaleServiceSettings.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Library.Common/NoSql/SalesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Library.Common/NoSql/SalesService.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Library.Common/Queue/MqClientSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Library.Common/Queue/MqClientSettings.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Library.Common/Queue/TransactionMqClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/source/RothschildHouse.Library.Common/Queue/TransactionMqClient.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/CityBankPaymentServicesClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/CityBankPaymentServicesClient.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/Data/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/Data/Card.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/Data/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/Data/Database.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/GlobalJsonSerializerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/GlobalJsonSerializerOptions.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/Payloads/Avs/CardPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/Payloads/Avs/CardPayload.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/Payloads/Avs/CityBankAvsPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/Payloads/Avs/CityBankAvsPayload.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/Payloads/Avs/Mocks/AvsMocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/Payloads/Avs/Mocks/AvsMocks.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/Payloads/Cvv2/Cvv2Payload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/Payloads/Cvv2/Cvv2Payload.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/Payloads/Cvv2/Mocks/Cvv2Mocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/Payloads/Cvv2/Mocks/Cvv2Mocks.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/RothschildHouse.TP.CityBank.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/RothschildHouse.TP.CityBank.csproj -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/ServicesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse.backup/tp/RothschildHouse.TP.CityBank/ServicesExtensions.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/RothschildHouse.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/RothschildHouse.sln -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/mocks/RothschildHouse.Mock.PaymentTransactions/MockSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/mocks/RothschildHouse.Mock.PaymentTransactions/MockSettings.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/mocks/RothschildHouse.Mock.PaymentTransactions/Mocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/mocks/RothschildHouse.Mock.PaymentTransactions/Mocks.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/mocks/RothschildHouse.Mock.PaymentTransactions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/mocks/RothschildHouse.Mock.PaymentTransactions/Program.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/mocks/RothschildHouse.Mock.PaymentTransactions/RothschildHouseClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/mocks/RothschildHouse.Mock.PaymentTransactions/RothschildHouseClient.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/mocks/RothschildHouse.Mock.PaymentTransactions/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/mocks/RothschildHouse.Mock.PaymentTransactions/appsettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/DbContextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/DbContextHelper.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Program.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/RothschildHouse.Seed.Dbo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/RothschildHouse.Seed.Dbo.csproj -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/ClientApplications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/ClientApplications.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/Countries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/Countries.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/Currencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/Currencies.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/PersonCustomers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/PersonCustomers.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/VCardTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/VCardTypes.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/VCustomerTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/VCustomerTypes.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/VTransactionStatuses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/VTransactionStatuses.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/VTransactionTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/Seeds/VTransactionTypes.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/seed/RothschildHouse.Seed.Dbo/appsettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.Notifications/HubMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.Notifications/HubMethods.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.Notifications/Hubs/TransactionsHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.Notifications/Hubs/TransactionsHub.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.Notifications/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.Notifications/Program.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.Notifications/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.Notifications/Properties/launchSettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.Notifications/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.Notifications/appsettings.Development.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.Notifications/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.Notifications/appsettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Models/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Models/Extensions.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Program.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/Properties/launchSettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/appsettings.Development.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.PaymentGateway/appsettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Controllers/ReportsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Controllers/ReportsController.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Models/MonthlySaleItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Models/MonthlySaleItemModel.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Models/MonthlySalesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Models/MonthlySalesResponse.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Models/YearlySaleItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Models/YearlySaleItemModel.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Models/YearlySalesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Models/YearlySalesResponse.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Program.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Properties/launchSettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Services/SaleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Services/SaleService.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Services/SaleServiceSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/Services/SaleServiceSettings.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/appsettings.Development.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.API.SearchEngine/appsettings.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Common/CreatedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Common/CreatedResponse.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Common/ListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Common/ListItem.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Common/ListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Common/ListResponse.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Common/PagedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Common/PagedResponse.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Common/Response.cs: -------------------------------------------------------------------------------- 1 | namespace RothschildHouse.Application.Common; 2 | 3 | public record Response 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Common/SingleResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Common/SingleResponse.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/ConfigureServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/ConfigureServices.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/DateTimeExtensions.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Features/Cards/Queries/GetCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Features/Cards/Queries/GetCard.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Features/Cards/Queries/GetCards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Features/Cards/Queries/GetCards.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/IQueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/IQueryableExtensions.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Models/TransactionItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Models/TransactionItemModel.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Queue/MqClientSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Queue/MqClientSettings.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Queue/TransactionMqClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/Queue/TransactionMqClient.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/RothschildHouse.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Application/RothschildHouse.Application.csproj -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Common/AuditableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Common/AuditableEntity.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Common/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Common/Entity.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/Card.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/ClientApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/ClientApplication.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/Company.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/Country.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/Currency.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/Customer.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/EnumDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/EnumDescription.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/Person.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/Transaction.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/TransactionLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/TransactionLog.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/VCardType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/VCardType.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/VTransactionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/VTransactionStatus.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/VTransactionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Entities/VTransactionType.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Enums/CardType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Enums/CardType.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Enums/CustomerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Enums/CustomerType.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Enums/TransactionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Enums/TransactionStatus.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Enums/TransactionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Enums/TransactionType.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Exceptions/RothschildHouseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Exceptions/RothschildHouseException.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Notifications/CardCreationNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/Notifications/CardCreationNotification.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/RothschildHouse.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Domain/RothschildHouse.Domain.csproj -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Infrastructure/ConfigureServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Infrastructure/ConfigureServices.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Infrastructure/MediatRExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/source/RothschildHouse.Infrastructure/MediatRExtensions.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/Card.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/CityBankPaymentServicesClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/CityBankPaymentServicesClient.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/ConfigureServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/ConfigureServices.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/Database.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/GlobalJsonSerializerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/GlobalJsonSerializerOptions.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/ICityBankPaymentServicesClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/ICityBankPaymentServicesClient.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/Models.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/Payloads/Avs/CityBankAvsPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/Payloads/Avs/CityBankAvsPayload.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/Payloads/Avs/Mocks/AvsMocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/Payloads/Avs/Mocks/AvsMocks.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/Payloads/Cvv2/Cvv2Payload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/Payloads/Cvv2/Cvv2Payload.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/Payloads/Cvv2/Mocks/Cvv2Mocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/RothschildHouse/tp/RothschildHouse.Clients.CityBank/Payloads/Cvv2/Mocks/Cvv2Mocks.cs -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/.editorconfig -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/.gitignore -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/.vscode/extensions.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/.vscode/launch.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/.vscode/tasks.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/README.md -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/angular.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/package-lock.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/package.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/app/app.component.css -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/app/app.component.html -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/app/app.component.ts -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/app/app.module.ts -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/components/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/components/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/app/components/home/home.component.html -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/app/components/home/home.component.ts -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/components/txn-list/txn-list-datasource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/app/components/txn-list/txn-list-datasource.ts -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/components/txn-list/txn-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/app/components/txn-list/txn-list.component.css -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/components/txn-list/txn-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/app/components/txn-list/txn-list.component.html -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/components/txn-list/txn-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/app/components/txn-list/txn-list.component.ts -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/services/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/app/services/common.ts -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/services/payment-gateway-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/app/services/payment-gateway-client.service.ts -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/app/services/reports-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/app/services/reports-client.service.ts -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/favicon.ico -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/index.html -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/main.ts -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/src/styles.css -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/tsconfig.app.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/tsconfig.json -------------------------------------------------------------------------------- /Legacy2/PaymentGateway/rothschild-house-gui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/Legacy2/PaymentGateway/rothschild-house-gui/tsconfig.spec.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hherzl/EntityFrameworkCoreForTheEnterprise/HEAD/_config.yml --------------------------------------------------------------------------------