From 3f0e293b41e32b940ce179d9ea1f9c40f74e16de Mon Sep 17 00:00:00 2001 From: Frede Hundewadt Date: Tue, 21 Feb 2023 13:13:22 +0100 Subject: [PATCH] WIP: namespace --- Wonky.Client/Components/AdvisorLandingComponent.razor.cs | 1 - .../Components/OfficeCountryCustomerListComponent.razor.cs | 2 +- Wonky.Client/Components/OfficeLandingComponent.razor.cs | 1 - Wonky.Client/HttpRepository/AdvisorActivityRepository.cs | 1 - Wonky.Client/HttpRepository/AdvisorContactRepository.cs | 1 - .../HttpRepository/AdvisorCustomerHistoryRepository.cs | 1 - Wonky.Client/HttpRepository/AdvisorCustomerRepository.cs | 1 - Wonky.Client/HttpRepository/AdvisorReportRepository.cs | 1 - Wonky.Client/HttpRepository/AdvisorTaskItemRepository.cs | 1 - Wonky.Client/HttpRepository/AdvisorWorkplaceRepository.cs | 1 - Wonky.Client/HttpRepository/CountryActivityRepository.cs | 1 - Wonky.Client/HttpRepository/CountryCatalogRepository.cs | 1 - .../HttpRepository/CountryCustomerHistoryRepository.cs | 1 - Wonky.Client/HttpRepository/CountryCustomerRepository.cs | 1 - .../IAdvisorActivityRepository.cs | 2 +- .../IAdvisorContactRepository.cs | 2 +- .../IAdvisorCustomerHistoryRepository.cs | 2 +- .../IAdvisorCustomerRepository.cs | 2 +- .../IAdvisorReportRepository.cs | 2 +- .../IAdvisorTaskItemRepository.cs | 2 +- .../IAdvisorWorkplaceRepository.cs | 2 +- .../ICountryActivityRepository.cs | 2 +- .../IOfficeCatalogRepository.cs | 2 +- .../IOfficeCustomerHistoryRepository.cs | 2 +- .../IOfficeCustomerRepository.cs | 2 +- .../IOfficeReportRepository.cs | 2 +- .../IOrderProcessRepository.cs | 2 +- .../ISystemSendMailService.cs | 2 +- .../ISystemUserRepository.cs | 3 +-- Wonky.Client/HttpRepository/OfficeReportRepository.cs | 1 - Wonky.Client/HttpRepository/OrderProcessRepository.cs | 1 - Wonky.Client/HttpRepository/SystemSendMailService.cs | 1 - Wonky.Client/HttpRepository/SystemUserRepository.cs | 1 - .../OverlayCustomer/CustomerInventoryListOverlay.razor.cs | 2 +- .../OverlayCustomer/CustomerInventoryReorderOverlay.razor.cs | 2 +- .../OverlayCustomer/CustomerInvoiceViewOverlay.razor.cs | 2 +- .../OfficeCustomerInventoryReorderOverlay.razor.cs | 2 +- .../OverlayOffice/OfficeCustomerInvoiceViewOverlay.razor.cs | 2 +- .../OverlayOffice/OfficeCustomerProductListOverlay.razor.cs | 2 +- Wonky.Client/OverlayOrderCreate/PriceCatalogOverlay.razor.cs | 2 +- Wonky.Client/OverlayOrderCreate/ProductHistoryOverlay.razor.cs | 2 +- .../OverlayOrderCreate/ProductPriceHistoryOverlay.razor.cs | 2 +- Wonky.Client/Pages/AdvisorActivityCreatePage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorActivityTodayListPage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorActivityViewPage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorCustomerActivityListPage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorCustomerCreatePage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorCustomerInventoryListPage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorCustomerInvoiceListPage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorCustomerListPage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorCustomerViewPage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorQuoteListPage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorReportCreatePage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorReportListPage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorReportViewPage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorTaskItemListCrmPage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorTaskItemViewCrmPage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorWorkplaceDocumentListPage.razor.cs | 3 ++- Wonky.Client/Pages/AdvisorWorkplaceListPage.razor.cs | 2 +- Wonky.Client/Pages/AdvisorWorkplaceViewPage.razor.cs | 2 +- Wonky.Client/Pages/CatalogCountryPage.razor.cs | 2 +- Wonky.Client/Pages/CatalogCountryPrintPage.razor.cs | 2 +- Wonky.Client/Pages/OfficeAdvisorReportViewPage.razor.cs | 2 +- Wonky.Client/Pages/OfficeCountryCustomerListPage.razor.cs | 2 +- Wonky.Client/Pages/OfficeOrderCreatePage.razor.cs | 2 +- Wonky.Client/Pages/OfficeOrderViewPage.razor.cs | 2 +- Wonky.Client/Pages/OfficeUserAdvisorCustomerListPage.razor.cs | 2 +- Wonky.Client/Pages/OfficeUserAdvisorListPage.razor.cs | 2 +- Wonky.Client/Pages/OfficeUserAdvisorReportListPage.razor.cs | 2 +- Wonky.Client/Pages/ReportPrintOrderPage.razor.cs | 2 +- Wonky.Client/Pages/SystemUserViewEditPage.razor.cs | 2 +- Wonky.Client/Pages/WarehouseOrderListPage.razor.cs | 2 +- Wonky.Client/Pages/WarehouseOrderViewPage.razor.cs | 2 +- Wonky.Client/Program.cs | 1 - Wonky.Client/Shared/ContactModal.razor.cs | 1 - Wonky.Client/Shared/VatLookupDkModal.razor.cs | 1 - 76 files changed, 57 insertions(+), 77 deletions(-) rename Wonky.Client/{HttpInterfaces => HttpRepository}/IAdvisorActivityRepository.cs (98%) rename Wonky.Client/{HttpInterfaces => HttpRepository}/IAdvisorContactRepository.cs (96%) rename Wonky.Client/{HttpInterfaces => HttpRepository}/IAdvisorCustomerHistoryRepository.cs (98%) rename Wonky.Client/{HttpInterfaces => HttpRepository}/IAdvisorCustomerRepository.cs (98%) rename Wonky.Client/{HttpInterfaces => HttpRepository}/IAdvisorReportRepository.cs (98%) rename Wonky.Client/{HttpInterfaces => HttpRepository}/IAdvisorTaskItemRepository.cs (98%) rename Wonky.Client/{HttpInterfaces => HttpRepository}/IAdvisorWorkplaceRepository.cs (98%) rename Wonky.Client/{HttpInterfaces => HttpRepository}/ICountryActivityRepository.cs (97%) rename Wonky.Client/{HttpInterfaces => HttpRepository}/IOfficeCatalogRepository.cs (98%) rename Wonky.Client/{HttpInterfaces => HttpRepository}/IOfficeCustomerHistoryRepository.cs (98%) rename Wonky.Client/{HttpInterfaces => HttpRepository}/IOfficeCustomerRepository.cs (98%) rename Wonky.Client/{HttpInterfaces => HttpRepository}/IOfficeReportRepository.cs (97%) rename Wonky.Client/{HttpInterfaces => HttpRepository}/IOrderProcessRepository.cs (97%) rename Wonky.Client/{HttpInterfaces => HttpRepository}/ISystemSendMailService.cs (96%) rename Wonky.Client/{HttpInterfaces => HttpRepository}/ISystemUserRepository.cs (97%) diff --git a/Wonky.Client/Components/AdvisorLandingComponent.razor.cs b/Wonky.Client/Components/AdvisorLandingComponent.razor.cs index bca37365..1c1dd3ed 100644 --- a/Wonky.Client/Components/AdvisorLandingComponent.razor.cs +++ b/Wonky.Client/Components/AdvisorLandingComponent.razor.cs @@ -21,7 +21,6 @@ using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Forms; using Microsoft.VisualBasic; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; using Wonky.Client.HttpRepository; using Wonky.Client.Services; using Wonky.Client.Shared; diff --git a/Wonky.Client/Components/OfficeCountryCustomerListComponent.razor.cs b/Wonky.Client/Components/OfficeCountryCustomerListComponent.razor.cs index 20719524..3261b3f0 100644 --- a/Wonky.Client/Components/OfficeCountryCustomerListComponent.razor.cs +++ b/Wonky.Client/Components/OfficeCountryCustomerListComponent.razor.cs @@ -16,11 +16,11 @@ using System.Reflection.Metadata.Ecma335; using Microsoft.AspNetCore.Components; using Microsoft.VisualBasic.CompilerServices; -using Wonky.Client.HttpInterfaces; using Wonky.Client.OverlayOffice; using Wonky.Entity.DTO; using Wonky.Entity.Views; using Wonky.Client.Helpers; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Client.Shared; using Utils = Wonky.Client.Helpers.Utils; diff --git a/Wonky.Client/Components/OfficeLandingComponent.razor.cs b/Wonky.Client/Components/OfficeLandingComponent.razor.cs index b3beb159..719c4943 100644 --- a/Wonky.Client/Components/OfficeLandingComponent.razor.cs +++ b/Wonky.Client/Components/OfficeLandingComponent.razor.cs @@ -21,7 +21,6 @@ using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Forms; using Microsoft.VisualBasic; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; using Wonky.Client.HttpRepository; using Wonky.Client.Services; using Wonky.Client.Shared; diff --git a/Wonky.Client/HttpRepository/AdvisorActivityRepository.cs b/Wonky.Client/HttpRepository/AdvisorActivityRepository.cs index ccd1c2b9..7cdbe738 100644 --- a/Wonky.Client/HttpRepository/AdvisorActivityRepository.cs +++ b/Wonky.Client/HttpRepository/AdvisorActivityRepository.cs @@ -18,7 +18,6 @@ using System.Net.Http.Json; using System.Text.Json; using Microsoft.AspNetCore.Components; using Microsoft.Extensions.Options; -using Wonky.Client.HttpInterfaces; using Wonky.Entity.Configuration; using Wonky.Entity.DTO; using Wonky.Entity.Views; diff --git a/Wonky.Client/HttpRepository/AdvisorContactRepository.cs b/Wonky.Client/HttpRepository/AdvisorContactRepository.cs index 9038a745..a8647270 100644 --- a/Wonky.Client/HttpRepository/AdvisorContactRepository.cs +++ b/Wonky.Client/HttpRepository/AdvisorContactRepository.cs @@ -18,7 +18,6 @@ using System.Net.Http.Json; using System.Text.Json; using Microsoft.AspNetCore.Components; using Microsoft.Extensions.Options; -using Wonky.Client.HttpInterfaces; using Wonky.Entity.Configuration; using Wonky.Entity.DTO; diff --git a/Wonky.Client/HttpRepository/AdvisorCustomerHistoryRepository.cs b/Wonky.Client/HttpRepository/AdvisorCustomerHistoryRepository.cs index 73d139ca..583ccb6d 100644 --- a/Wonky.Client/HttpRepository/AdvisorCustomerHistoryRepository.cs +++ b/Wonky.Client/HttpRepository/AdvisorCustomerHistoryRepository.cs @@ -18,7 +18,6 @@ using System.Net.Http.Json; using System.Text.Json; using Microsoft.AspNetCore.Components; using Microsoft.Extensions.Options; -using Wonky.Client.HttpInterfaces; using Wonky.Entity.Configuration; using Wonky.Entity.Views; diff --git a/Wonky.Client/HttpRepository/AdvisorCustomerRepository.cs b/Wonky.Client/HttpRepository/AdvisorCustomerRepository.cs index f228e022..41a2095b 100644 --- a/Wonky.Client/HttpRepository/AdvisorCustomerRepository.cs +++ b/Wonky.Client/HttpRepository/AdvisorCustomerRepository.cs @@ -20,7 +20,6 @@ using Wonky.Client.Features; using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.WebUtilities; using Microsoft.Extensions.Options; -using Wonky.Client.HttpInterfaces; using Wonky.Entity.Configuration; using Wonky.Entity.DTO; using Wonky.Entity.Requests; diff --git a/Wonky.Client/HttpRepository/AdvisorReportRepository.cs b/Wonky.Client/HttpRepository/AdvisorReportRepository.cs index 68775256..3b87d8fd 100644 --- a/Wonky.Client/HttpRepository/AdvisorReportRepository.cs +++ b/Wonky.Client/HttpRepository/AdvisorReportRepository.cs @@ -18,7 +18,6 @@ using System.Net.Http.Json; using System.Text.Json; using Microsoft.AspNetCore.Components; using Microsoft.Extensions.Options; -using Wonky.Client.HttpInterfaces; using Wonky.Entity.Configuration; using Wonky.Entity.DTO; using Wonky.Entity.Views; diff --git a/Wonky.Client/HttpRepository/AdvisorTaskItemRepository.cs b/Wonky.Client/HttpRepository/AdvisorTaskItemRepository.cs index c31f43fb..18fda013 100644 --- a/Wonky.Client/HttpRepository/AdvisorTaskItemRepository.cs +++ b/Wonky.Client/HttpRepository/AdvisorTaskItemRepository.cs @@ -18,7 +18,6 @@ using System.Net.Http.Json; using System.Text.Json; using Microsoft.AspNetCore.Components; using Microsoft.Extensions.Options; -using Wonky.Client.HttpInterfaces; using Wonky.Entity.Configuration; using Wonky.Entity.DTO; diff --git a/Wonky.Client/HttpRepository/AdvisorWorkplaceRepository.cs b/Wonky.Client/HttpRepository/AdvisorWorkplaceRepository.cs index b10288a0..10e25267 100644 --- a/Wonky.Client/HttpRepository/AdvisorWorkplaceRepository.cs +++ b/Wonky.Client/HttpRepository/AdvisorWorkplaceRepository.cs @@ -18,7 +18,6 @@ using System.Net.Http.Json; using System.Text.Json; using Microsoft.AspNetCore.Components; using Microsoft.Extensions.Options; -using Wonky.Client.HttpInterfaces; using Wonky.Entity.Configuration; using Wonky.Entity.DTO; using Wonky.Entity.Views; diff --git a/Wonky.Client/HttpRepository/CountryActivityRepository.cs b/Wonky.Client/HttpRepository/CountryActivityRepository.cs index f7a3a922..17dfd589 100644 --- a/Wonky.Client/HttpRepository/CountryActivityRepository.cs +++ b/Wonky.Client/HttpRepository/CountryActivityRepository.cs @@ -18,7 +18,6 @@ using System.Net.Http.Json; using System.Text.Json; using Microsoft.AspNetCore.Components; using Microsoft.Extensions.Options; -using Wonky.Client.HttpInterfaces; using Wonky.Entity.Configuration; using Wonky.Entity.DTO; using Wonky.Entity.Views; diff --git a/Wonky.Client/HttpRepository/CountryCatalogRepository.cs b/Wonky.Client/HttpRepository/CountryCatalogRepository.cs index 6d11c6ae..946786b0 100644 --- a/Wonky.Client/HttpRepository/CountryCatalogRepository.cs +++ b/Wonky.Client/HttpRepository/CountryCatalogRepository.cs @@ -20,7 +20,6 @@ using Wonky.Client.Features; using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.WebUtilities; using Microsoft.Extensions.Options; -using Wonky.Client.HttpInterfaces; using Wonky.Entity.Configuration; using Wonky.Entity.Requests; using Wonky.Entity.Views; diff --git a/Wonky.Client/HttpRepository/CountryCustomerHistoryRepository.cs b/Wonky.Client/HttpRepository/CountryCustomerHistoryRepository.cs index d69683c8..a795462e 100644 --- a/Wonky.Client/HttpRepository/CountryCustomerHistoryRepository.cs +++ b/Wonky.Client/HttpRepository/CountryCustomerHistoryRepository.cs @@ -18,7 +18,6 @@ using System.Net.Http.Json; using System.Text.Json; using Microsoft.AspNetCore.Components; using Microsoft.Extensions.Options; -using Wonky.Client.HttpInterfaces; using Wonky.Entity.Configuration; using Wonky.Entity.Views; diff --git a/Wonky.Client/HttpRepository/CountryCustomerRepository.cs b/Wonky.Client/HttpRepository/CountryCustomerRepository.cs index fb5143fc..5c0ebd23 100644 --- a/Wonky.Client/HttpRepository/CountryCustomerRepository.cs +++ b/Wonky.Client/HttpRepository/CountryCustomerRepository.cs @@ -20,7 +20,6 @@ using Wonky.Client.Features; using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.WebUtilities; using Microsoft.Extensions.Options; -using Wonky.Client.HttpInterfaces; using Wonky.Entity.Configuration; using Wonky.Entity.DTO; using Wonky.Entity.Requests; diff --git a/Wonky.Client/HttpInterfaces/IAdvisorActivityRepository.cs b/Wonky.Client/HttpRepository/IAdvisorActivityRepository.cs similarity index 98% rename from Wonky.Client/HttpInterfaces/IAdvisorActivityRepository.cs rename to Wonky.Client/HttpRepository/IAdvisorActivityRepository.cs index 7f8190c5..218ed56e 100644 --- a/Wonky.Client/HttpInterfaces/IAdvisorActivityRepository.cs +++ b/Wonky.Client/HttpRepository/IAdvisorActivityRepository.cs @@ -17,7 +17,7 @@ using Wonky.Entity.DTO; using Wonky.Entity.Views; -namespace Wonky.Client.HttpInterfaces; +namespace Wonky.Client.HttpRepository; /// /// Interface Activity CRM Http repository diff --git a/Wonky.Client/HttpInterfaces/IAdvisorContactRepository.cs b/Wonky.Client/HttpRepository/IAdvisorContactRepository.cs similarity index 96% rename from Wonky.Client/HttpInterfaces/IAdvisorContactRepository.cs rename to Wonky.Client/HttpRepository/IAdvisorContactRepository.cs index 9d34702c..c22fa40e 100644 --- a/Wonky.Client/HttpInterfaces/IAdvisorContactRepository.cs +++ b/Wonky.Client/HttpRepository/IAdvisorContactRepository.cs @@ -1,7 +1,7 @@ using Wonky.Entity.DTO; -namespace Wonky.Client.HttpInterfaces; +namespace Wonky.Client.HttpRepository; /// /// Interface for Contacts CRM Http repository diff --git a/Wonky.Client/HttpInterfaces/IAdvisorCustomerHistoryRepository.cs b/Wonky.Client/HttpRepository/IAdvisorCustomerHistoryRepository.cs similarity index 98% rename from Wonky.Client/HttpInterfaces/IAdvisorCustomerHistoryRepository.cs rename to Wonky.Client/HttpRepository/IAdvisorCustomerHistoryRepository.cs index 71ffe643..ce391a80 100644 --- a/Wonky.Client/HttpInterfaces/IAdvisorCustomerHistoryRepository.cs +++ b/Wonky.Client/HttpRepository/IAdvisorCustomerHistoryRepository.cs @@ -16,7 +16,7 @@ using Wonky.Entity.Views; -namespace Wonky.Client.HttpInterfaces; +namespace Wonky.Client.HttpRepository; /// /// Interface Customer History CRM Http repository diff --git a/Wonky.Client/HttpInterfaces/IAdvisorCustomerRepository.cs b/Wonky.Client/HttpRepository/IAdvisorCustomerRepository.cs similarity index 98% rename from Wonky.Client/HttpInterfaces/IAdvisorCustomerRepository.cs rename to Wonky.Client/HttpRepository/IAdvisorCustomerRepository.cs index a71417f6..cf3bfcc0 100644 --- a/Wonky.Client/HttpInterfaces/IAdvisorCustomerRepository.cs +++ b/Wonky.Client/HttpRepository/IAdvisorCustomerRepository.cs @@ -18,7 +18,7 @@ using Wonky.Client.Features; using Wonky.Entity.DTO; using Wonky.Entity.Requests; -namespace Wonky.Client.HttpInterfaces; +namespace Wonky.Client.HttpRepository; /// /// Interface Customer CRM Http repository diff --git a/Wonky.Client/HttpInterfaces/IAdvisorReportRepository.cs b/Wonky.Client/HttpRepository/IAdvisorReportRepository.cs similarity index 98% rename from Wonky.Client/HttpInterfaces/IAdvisorReportRepository.cs rename to Wonky.Client/HttpRepository/IAdvisorReportRepository.cs index 79ed2f6c..88a6f843 100644 --- a/Wonky.Client/HttpInterfaces/IAdvisorReportRepository.cs +++ b/Wonky.Client/HttpRepository/IAdvisorReportRepository.cs @@ -17,7 +17,7 @@ using Wonky.Entity.DTO; using Wonky.Entity.Views; -namespace Wonky.Client.HttpInterfaces; +namespace Wonky.Client.HttpRepository; /// /// Interface Report Http repository diff --git a/Wonky.Client/HttpInterfaces/IAdvisorTaskItemRepository.cs b/Wonky.Client/HttpRepository/IAdvisorTaskItemRepository.cs similarity index 98% rename from Wonky.Client/HttpInterfaces/IAdvisorTaskItemRepository.cs rename to Wonky.Client/HttpRepository/IAdvisorTaskItemRepository.cs index 51d51b0b..06bc97ee 100644 --- a/Wonky.Client/HttpInterfaces/IAdvisorTaskItemRepository.cs +++ b/Wonky.Client/HttpRepository/IAdvisorTaskItemRepository.cs @@ -16,7 +16,7 @@ using Wonky.Entity.DTO; -namespace Wonky.Client.HttpInterfaces; +namespace Wonky.Client.HttpRepository; /// /// Interface for handling CRM Tasks http repository diff --git a/Wonky.Client/HttpInterfaces/IAdvisorWorkplaceRepository.cs b/Wonky.Client/HttpRepository/IAdvisorWorkplaceRepository.cs similarity index 98% rename from Wonky.Client/HttpInterfaces/IAdvisorWorkplaceRepository.cs rename to Wonky.Client/HttpRepository/IAdvisorWorkplaceRepository.cs index dc9dd9fa..104ec98e 100644 --- a/Wonky.Client/HttpInterfaces/IAdvisorWorkplaceRepository.cs +++ b/Wonky.Client/HttpRepository/IAdvisorWorkplaceRepository.cs @@ -17,7 +17,7 @@ using Wonky.Entity.DTO; using Wonky.Entity.Views; -namespace Wonky.Client.HttpInterfaces; +namespace Wonky.Client.HttpRepository; /// /// Interface for handling Customer Workplaces (chemical document service) diff --git a/Wonky.Client/HttpInterfaces/ICountryActivityRepository.cs b/Wonky.Client/HttpRepository/ICountryActivityRepository.cs similarity index 97% rename from Wonky.Client/HttpInterfaces/ICountryActivityRepository.cs rename to Wonky.Client/HttpRepository/ICountryActivityRepository.cs index e66cc945..e0b24e71 100644 --- a/Wonky.Client/HttpInterfaces/ICountryActivityRepository.cs +++ b/Wonky.Client/HttpRepository/ICountryActivityRepository.cs @@ -17,7 +17,7 @@ using Wonky.Entity.DTO; using Wonky.Entity.Views; -namespace Wonky.Client.HttpInterfaces; +namespace Wonky.Client.HttpRepository; /// /// Interface Activity CRM Http repository diff --git a/Wonky.Client/HttpInterfaces/IOfficeCatalogRepository.cs b/Wonky.Client/HttpRepository/IOfficeCatalogRepository.cs similarity index 98% rename from Wonky.Client/HttpInterfaces/IOfficeCatalogRepository.cs rename to Wonky.Client/HttpRepository/IOfficeCatalogRepository.cs index a076745f..ea52ed22 100644 --- a/Wonky.Client/HttpInterfaces/IOfficeCatalogRepository.cs +++ b/Wonky.Client/HttpRepository/IOfficeCatalogRepository.cs @@ -18,7 +18,7 @@ using Wonky.Client.Features; using Wonky.Entity.Requests; using Wonky.Entity.Views; -namespace Wonky.Client.HttpInterfaces; +namespace Wonky.Client.HttpRepository; /// /// Interface Catalog Http repository diff --git a/Wonky.Client/HttpInterfaces/IOfficeCustomerHistoryRepository.cs b/Wonky.Client/HttpRepository/IOfficeCustomerHistoryRepository.cs similarity index 98% rename from Wonky.Client/HttpInterfaces/IOfficeCustomerHistoryRepository.cs rename to Wonky.Client/HttpRepository/IOfficeCustomerHistoryRepository.cs index 17db42c5..59b200c0 100644 --- a/Wonky.Client/HttpInterfaces/IOfficeCustomerHistoryRepository.cs +++ b/Wonky.Client/HttpRepository/IOfficeCustomerHistoryRepository.cs @@ -16,7 +16,7 @@ using Wonky.Entity.Views; -namespace Wonky.Client.HttpInterfaces; +namespace Wonky.Client.HttpRepository; /// /// Interface Customer History CRM Http repository diff --git a/Wonky.Client/HttpInterfaces/IOfficeCustomerRepository.cs b/Wonky.Client/HttpRepository/IOfficeCustomerRepository.cs similarity index 98% rename from Wonky.Client/HttpInterfaces/IOfficeCustomerRepository.cs rename to Wonky.Client/HttpRepository/IOfficeCustomerRepository.cs index 6000d2f3..f324e95b 100644 --- a/Wonky.Client/HttpInterfaces/IOfficeCustomerRepository.cs +++ b/Wonky.Client/HttpRepository/IOfficeCustomerRepository.cs @@ -18,7 +18,7 @@ using Wonky.Client.Features; using Wonky.Entity.DTO; using Wonky.Entity.Requests; -namespace Wonky.Client.HttpInterfaces; +namespace Wonky.Client.HttpRepository; /// /// Interface for Customer Office Http repository diff --git a/Wonky.Client/HttpInterfaces/IOfficeReportRepository.cs b/Wonky.Client/HttpRepository/IOfficeReportRepository.cs similarity index 97% rename from Wonky.Client/HttpInterfaces/IOfficeReportRepository.cs rename to Wonky.Client/HttpRepository/IOfficeReportRepository.cs index 0e0d1546..54e877f3 100644 --- a/Wonky.Client/HttpInterfaces/IOfficeReportRepository.cs +++ b/Wonky.Client/HttpRepository/IOfficeReportRepository.cs @@ -16,7 +16,7 @@ using Wonky.Entity.Views; -namespace Wonky.Client.HttpInterfaces; +namespace Wonky.Client.HttpRepository; /// /// Interface for Report http repository diff --git a/Wonky.Client/HttpInterfaces/IOrderProcessRepository.cs b/Wonky.Client/HttpRepository/IOrderProcessRepository.cs similarity index 97% rename from Wonky.Client/HttpInterfaces/IOrderProcessRepository.cs rename to Wonky.Client/HttpRepository/IOrderProcessRepository.cs index e273340c..81c2366e 100644 --- a/Wonky.Client/HttpInterfaces/IOrderProcessRepository.cs +++ b/Wonky.Client/HttpRepository/IOrderProcessRepository.cs @@ -17,7 +17,7 @@ using Wonky.Entity.DTO; using Wonky.Entity.Views; -namespace Wonky.Client.HttpInterfaces; +namespace Wonky.Client.HttpRepository; /// /// Interface for processing orders in warehouse diff --git a/Wonky.Client/HttpInterfaces/ISystemSendMailService.cs b/Wonky.Client/HttpRepository/ISystemSendMailService.cs similarity index 96% rename from Wonky.Client/HttpInterfaces/ISystemSendMailService.cs rename to Wonky.Client/HttpRepository/ISystemSendMailService.cs index 1bbefbc8..e74af27e 100644 --- a/Wonky.Client/HttpInterfaces/ISystemSendMailService.cs +++ b/Wonky.Client/HttpRepository/ISystemSendMailService.cs @@ -17,7 +17,7 @@ using Wonky.Entity.DTO; using Wonky.Entity.Views; -namespace Wonky.Client.HttpInterfaces; +namespace Wonky.Client.HttpRepository; /// /// Interface for sending emai diff --git a/Wonky.Client/HttpInterfaces/ISystemUserRepository.cs b/Wonky.Client/HttpRepository/ISystemUserRepository.cs similarity index 97% rename from Wonky.Client/HttpInterfaces/ISystemUserRepository.cs rename to Wonky.Client/HttpRepository/ISystemUserRepository.cs index 839608d7..84773af7 100644 --- a/Wonky.Client/HttpInterfaces/ISystemUserRepository.cs +++ b/Wonky.Client/HttpRepository/ISystemUserRepository.cs @@ -15,9 +15,8 @@ // using Wonky.Entity.DTO; -using Wonky.Entity.Views; -namespace Wonky.Client.HttpInterfaces; +namespace Wonky.Client.HttpRepository; /// /// Interface for User handling over http diff --git a/Wonky.Client/HttpRepository/OfficeReportRepository.cs b/Wonky.Client/HttpRepository/OfficeReportRepository.cs index d5ba8f25..d8656275 100644 --- a/Wonky.Client/HttpRepository/OfficeReportRepository.cs +++ b/Wonky.Client/HttpRepository/OfficeReportRepository.cs @@ -18,7 +18,6 @@ using System.Net.Http.Json; using System.Text.Json; using Microsoft.AspNetCore.Components; using Microsoft.Extensions.Options; -using Wonky.Client.HttpInterfaces; using Wonky.Entity.Configuration; using Wonky.Entity.Views; diff --git a/Wonky.Client/HttpRepository/OrderProcessRepository.cs b/Wonky.Client/HttpRepository/OrderProcessRepository.cs index 0c4ac23f..32231c86 100644 --- a/Wonky.Client/HttpRepository/OrderProcessRepository.cs +++ b/Wonky.Client/HttpRepository/OrderProcessRepository.cs @@ -18,7 +18,6 @@ using System.Net.Http.Json; using System.Text.Json; using Microsoft.AspNetCore.Components; using Microsoft.Extensions.Options; -using Wonky.Client.HttpInterfaces; using Wonky.Entity.Configuration; using Wonky.Entity.DTO; using Wonky.Entity.Views; diff --git a/Wonky.Client/HttpRepository/SystemSendMailService.cs b/Wonky.Client/HttpRepository/SystemSendMailService.cs index 699d2838..a22b68b1 100644 --- a/Wonky.Client/HttpRepository/SystemSendMailService.cs +++ b/Wonky.Client/HttpRepository/SystemSendMailService.cs @@ -18,7 +18,6 @@ using System.Net.Http.Json; using System.Text.Json; using Microsoft.AspNetCore.Components; using Microsoft.Extensions.Options; -using Wonky.Client.HttpInterfaces; using Wonky.Entity.Configuration; using Wonky.Entity.DTO; using Wonky.Entity.Views; diff --git a/Wonky.Client/HttpRepository/SystemUserRepository.cs b/Wonky.Client/HttpRepository/SystemUserRepository.cs index 9e5acfb7..d947db5d 100644 --- a/Wonky.Client/HttpRepository/SystemUserRepository.cs +++ b/Wonky.Client/HttpRepository/SystemUserRepository.cs @@ -18,7 +18,6 @@ using System.Net.Http.Json; using System.Text.Json; using Microsoft.AspNetCore.Components; using Microsoft.Extensions.Options; -using Wonky.Client.HttpInterfaces; using Wonky.Entity.Configuration; using Wonky.Entity.DTO; using Wonky.Entity.Views; diff --git a/Wonky.Client/OverlayCustomer/CustomerInventoryListOverlay.razor.cs b/Wonky.Client/OverlayCustomer/CustomerInventoryListOverlay.razor.cs index 9918f49b..33c9f216 100644 --- a/Wonky.Client/OverlayCustomer/CustomerInventoryListOverlay.razor.cs +++ b/Wonky.Client/OverlayCustomer/CustomerInventoryListOverlay.razor.cs @@ -16,7 +16,7 @@ using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Entity.DTO; using Wonky.Entity.Views; diff --git a/Wonky.Client/OverlayCustomer/CustomerInventoryReorderOverlay.razor.cs b/Wonky.Client/OverlayCustomer/CustomerInventoryReorderOverlay.razor.cs index c1edbb28..814ffaf2 100644 --- a/Wonky.Client/OverlayCustomer/CustomerInventoryReorderOverlay.razor.cs +++ b/Wonky.Client/OverlayCustomer/CustomerInventoryReorderOverlay.razor.cs @@ -16,7 +16,7 @@ using System.Globalization; using Microsoft.AspNetCore.Components; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Entity.Views; #pragma warning disable CS8618 diff --git a/Wonky.Client/OverlayCustomer/CustomerInvoiceViewOverlay.razor.cs b/Wonky.Client/OverlayCustomer/CustomerInvoiceViewOverlay.razor.cs index 0a3cd81a..36d882a0 100644 --- a/Wonky.Client/OverlayCustomer/CustomerInvoiceViewOverlay.razor.cs +++ b/Wonky.Client/OverlayCustomer/CustomerInvoiceViewOverlay.razor.cs @@ -16,7 +16,7 @@ using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Entity.Views; #pragma warning disable CS8618 diff --git a/Wonky.Client/OverlayOffice/OfficeCustomerInventoryReorderOverlay.razor.cs b/Wonky.Client/OverlayOffice/OfficeCustomerInventoryReorderOverlay.razor.cs index faa7b074..f4028951 100644 --- a/Wonky.Client/OverlayOffice/OfficeCustomerInventoryReorderOverlay.razor.cs +++ b/Wonky.Client/OverlayOffice/OfficeCustomerInventoryReorderOverlay.razor.cs @@ -16,7 +16,7 @@ using System.Globalization; using Microsoft.AspNetCore.Components; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Entity.DTO; using Wonky.Entity.Views; diff --git a/Wonky.Client/OverlayOffice/OfficeCustomerInvoiceViewOverlay.razor.cs b/Wonky.Client/OverlayOffice/OfficeCustomerInvoiceViewOverlay.razor.cs index 738a9ee1..63e33977 100644 --- a/Wonky.Client/OverlayOffice/OfficeCustomerInvoiceViewOverlay.razor.cs +++ b/Wonky.Client/OverlayOffice/OfficeCustomerInvoiceViewOverlay.razor.cs @@ -16,7 +16,7 @@ using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Entity.Views; #pragma warning disable CS8618 diff --git a/Wonky.Client/OverlayOffice/OfficeCustomerProductListOverlay.razor.cs b/Wonky.Client/OverlayOffice/OfficeCustomerProductListOverlay.razor.cs index 1206fe02..a328431f 100644 --- a/Wonky.Client/OverlayOffice/OfficeCustomerProductListOverlay.razor.cs +++ b/Wonky.Client/OverlayOffice/OfficeCustomerProductListOverlay.razor.cs @@ -15,7 +15,7 @@ using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Entity.DTO; using Wonky.Entity.Views; diff --git a/Wonky.Client/OverlayOrderCreate/PriceCatalogOverlay.razor.cs b/Wonky.Client/OverlayOrderCreate/PriceCatalogOverlay.razor.cs index fa75ae48..7a25b5c1 100644 --- a/Wonky.Client/OverlayOrderCreate/PriceCatalogOverlay.razor.cs +++ b/Wonky.Client/OverlayOrderCreate/PriceCatalogOverlay.razor.cs @@ -16,7 +16,7 @@ using System.Text.Json; using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Client.Services; using Wonky.Entity.Requests; diff --git a/Wonky.Client/OverlayOrderCreate/ProductHistoryOverlay.razor.cs b/Wonky.Client/OverlayOrderCreate/ProductHistoryOverlay.razor.cs index 2711b16a..c2c6d05c 100644 --- a/Wonky.Client/OverlayOrderCreate/ProductHistoryOverlay.razor.cs +++ b/Wonky.Client/OverlayOrderCreate/ProductHistoryOverlay.razor.cs @@ -15,7 +15,7 @@ // using Microsoft.AspNetCore.Components; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Entity.Views; #pragma warning disable CS8618 diff --git a/Wonky.Client/OverlayOrderCreate/ProductPriceHistoryOverlay.razor.cs b/Wonky.Client/OverlayOrderCreate/ProductPriceHistoryOverlay.razor.cs index 6571d7bb..6cac4660 100644 --- a/Wonky.Client/OverlayOrderCreate/ProductPriceHistoryOverlay.razor.cs +++ b/Wonky.Client/OverlayOrderCreate/ProductPriceHistoryOverlay.razor.cs @@ -15,7 +15,7 @@ // using Microsoft.AspNetCore.Components; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Entity.Views; #pragma warning disable CS8618 diff --git a/Wonky.Client/Pages/AdvisorActivityCreatePage.razor.cs b/Wonky.Client/Pages/AdvisorActivityCreatePage.razor.cs index a2b552bd..ee093647 100644 --- a/Wonky.Client/Pages/AdvisorActivityCreatePage.razor.cs +++ b/Wonky.Client/Pages/AdvisorActivityCreatePage.razor.cs @@ -22,7 +22,7 @@ using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Forms; using Wonky.Client.Helpers; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Client.OverlayCustomer; using Wonky.Client.OverlayOrderCreate; diff --git a/Wonky.Client/Pages/AdvisorActivityTodayListPage.razor.cs b/Wonky.Client/Pages/AdvisorActivityTodayListPage.razor.cs index bdf055e3..f807f391 100644 --- a/Wonky.Client/Pages/AdvisorActivityTodayListPage.razor.cs +++ b/Wonky.Client/Pages/AdvisorActivityTodayListPage.razor.cs @@ -18,7 +18,7 @@ using System.Text.Json; using Blazored.Toast.Services; using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Services; using Wonky.Entity.Views; #pragma warning disable CS8618 diff --git a/Wonky.Client/Pages/AdvisorActivityViewPage.razor.cs b/Wonky.Client/Pages/AdvisorActivityViewPage.razor.cs index 6621519e..cb8aad8f 100644 --- a/Wonky.Client/Pages/AdvisorActivityViewPage.razor.cs +++ b/Wonky.Client/Pages/AdvisorActivityViewPage.razor.cs @@ -19,7 +19,7 @@ using Blazored.Toast.Services; using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Forms; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Entity.DTO; using Wonky.Entity.Views; #pragma warning disable CS8618 diff --git a/Wonky.Client/Pages/AdvisorCustomerActivityListPage.razor.cs b/Wonky.Client/Pages/AdvisorCustomerActivityListPage.razor.cs index fea9f243..d74d9211 100644 --- a/Wonky.Client/Pages/AdvisorCustomerActivityListPage.razor.cs +++ b/Wonky.Client/Pages/AdvisorCustomerActivityListPage.razor.cs @@ -17,7 +17,7 @@ using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Entity.DTO; using Wonky.Entity.Views; #pragma warning disable CS8618 diff --git a/Wonky.Client/Pages/AdvisorCustomerCreatePage.razor.cs b/Wonky.Client/Pages/AdvisorCustomerCreatePage.razor.cs index 4b3eff3b..1891552e 100644 --- a/Wonky.Client/Pages/AdvisorCustomerCreatePage.razor.cs +++ b/Wonky.Client/Pages/AdvisorCustomerCreatePage.razor.cs @@ -21,7 +21,7 @@ using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Forms; using Wonky.Client.Helpers; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Client.Services; using Wonky.Client.Shared; diff --git a/Wonky.Client/Pages/AdvisorCustomerInventoryListPage.razor.cs b/Wonky.Client/Pages/AdvisorCustomerInventoryListPage.razor.cs index 10497d7e..1a0451c6 100644 --- a/Wonky.Client/Pages/AdvisorCustomerInventoryListPage.razor.cs +++ b/Wonky.Client/Pages/AdvisorCustomerInventoryListPage.razor.cs @@ -19,7 +19,7 @@ using Blazored.LocalStorage; using Blazored.Toast.Services; using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Client.OverlayCustomer; using Wonky.Client.Shared; diff --git a/Wonky.Client/Pages/AdvisorCustomerInvoiceListPage.razor.cs b/Wonky.Client/Pages/AdvisorCustomerInvoiceListPage.razor.cs index 510422c0..1ed96038 100644 --- a/Wonky.Client/Pages/AdvisorCustomerInvoiceListPage.razor.cs +++ b/Wonky.Client/Pages/AdvisorCustomerInvoiceListPage.razor.cs @@ -19,7 +19,7 @@ using Blazored.LocalStorage; using Blazored.Toast.Services; using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.OverlayCustomer; using Wonky.Entity.DTO; using Wonky.Entity.Views; diff --git a/Wonky.Client/Pages/AdvisorCustomerListPage.razor.cs b/Wonky.Client/Pages/AdvisorCustomerListPage.razor.cs index 5d0081da..66c814d9 100644 --- a/Wonky.Client/Pages/AdvisorCustomerListPage.razor.cs +++ b/Wonky.Client/Pages/AdvisorCustomerListPage.razor.cs @@ -17,7 +17,7 @@ using Blazored.LocalStorage; using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Services; using Wonky.Entity.DTO; using Wonky.Entity.Requests; diff --git a/Wonky.Client/Pages/AdvisorCustomerViewPage.razor.cs b/Wonky.Client/Pages/AdvisorCustomerViewPage.razor.cs index b1ca2c46..86f9a215 100644 --- a/Wonky.Client/Pages/AdvisorCustomerViewPage.razor.cs +++ b/Wonky.Client/Pages/AdvisorCustomerViewPage.razor.cs @@ -22,7 +22,7 @@ using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Forms; using Wonky.Client.Helpers; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Client.Services; using Wonky.Client.Shared; diff --git a/Wonky.Client/Pages/AdvisorQuoteListPage.razor.cs b/Wonky.Client/Pages/AdvisorQuoteListPage.razor.cs index 0b40831c..b8c3b5c5 100644 --- a/Wonky.Client/Pages/AdvisorQuoteListPage.razor.cs +++ b/Wonky.Client/Pages/AdvisorQuoteListPage.razor.cs @@ -19,7 +19,7 @@ using Blazored.Toast.Services; using Microsoft.AspNetCore.Components; using Wonky.Client.Helpers; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Entity.Views; #pragma warning disable CS8618 diff --git a/Wonky.Client/Pages/AdvisorReportCreatePage.razor.cs b/Wonky.Client/Pages/AdvisorReportCreatePage.razor.cs index 1fa83df2..0b5f936e 100644 --- a/Wonky.Client/Pages/AdvisorReportCreatePage.razor.cs +++ b/Wonky.Client/Pages/AdvisorReportCreatePage.razor.cs @@ -20,7 +20,7 @@ using Blazored.Toast.Services; using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Forms; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Services; using Wonky.Client.Shared; using Wonky.Entity.DTO; diff --git a/Wonky.Client/Pages/AdvisorReportListPage.razor.cs b/Wonky.Client/Pages/AdvisorReportListPage.razor.cs index 68214ed2..dbea7ae9 100644 --- a/Wonky.Client/Pages/AdvisorReportListPage.razor.cs +++ b/Wonky.Client/Pages/AdvisorReportListPage.razor.cs @@ -16,7 +16,7 @@ using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Entity.Views; #pragma warning disable CS8618 diff --git a/Wonky.Client/Pages/AdvisorReportViewPage.razor.cs b/Wonky.Client/Pages/AdvisorReportViewPage.razor.cs index 4d21fc1d..f02820ee 100644 --- a/Wonky.Client/Pages/AdvisorReportViewPage.razor.cs +++ b/Wonky.Client/Pages/AdvisorReportViewPage.razor.cs @@ -17,7 +17,7 @@ using Blazored.LocalStorage; using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Client.Services; using Wonky.Entity.DTO; diff --git a/Wonky.Client/Pages/AdvisorTaskItemListCrmPage.razor.cs b/Wonky.Client/Pages/AdvisorTaskItemListCrmPage.razor.cs index 97ace2ad..e26a9d45 100644 --- a/Wonky.Client/Pages/AdvisorTaskItemListCrmPage.razor.cs +++ b/Wonky.Client/Pages/AdvisorTaskItemListCrmPage.razor.cs @@ -17,7 +17,7 @@ using Blazored.Toast.Services; using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Services; using Wonky.Entity.DTO; #pragma warning disable CS8618 diff --git a/Wonky.Client/Pages/AdvisorTaskItemViewCrmPage.razor.cs b/Wonky.Client/Pages/AdvisorTaskItemViewCrmPage.razor.cs index c9b0df12..9f9e2467 100644 --- a/Wonky.Client/Pages/AdvisorTaskItemViewCrmPage.razor.cs +++ b/Wonky.Client/Pages/AdvisorTaskItemViewCrmPage.razor.cs @@ -18,7 +18,7 @@ using System.Text.Json; using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Forms; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Entity.DTO; #pragma warning disable CS8618 diff --git a/Wonky.Client/Pages/AdvisorWorkplaceDocumentListPage.razor.cs b/Wonky.Client/Pages/AdvisorWorkplaceDocumentListPage.razor.cs index f1855cc9..0d339f81 100644 --- a/Wonky.Client/Pages/AdvisorWorkplaceDocumentListPage.razor.cs +++ b/Wonky.Client/Pages/AdvisorWorkplaceDocumentListPage.razor.cs @@ -16,7 +16,8 @@ using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; + #pragma warning disable CS8618 namespace Wonky.Client.Pages; diff --git a/Wonky.Client/Pages/AdvisorWorkplaceListPage.razor.cs b/Wonky.Client/Pages/AdvisorWorkplaceListPage.razor.cs index 1102da7e..25234f27 100644 --- a/Wonky.Client/Pages/AdvisorWorkplaceListPage.razor.cs +++ b/Wonky.Client/Pages/AdvisorWorkplaceListPage.razor.cs @@ -16,7 +16,7 @@ using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Entity.DTO; using Wonky.Entity.Views; #pragma warning disable CS8618 diff --git a/Wonky.Client/Pages/AdvisorWorkplaceViewPage.razor.cs b/Wonky.Client/Pages/AdvisorWorkplaceViewPage.razor.cs index eacf0780..0a97b43c 100644 --- a/Wonky.Client/Pages/AdvisorWorkplaceViewPage.razor.cs +++ b/Wonky.Client/Pages/AdvisorWorkplaceViewPage.razor.cs @@ -17,7 +17,7 @@ using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Forms; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Entity.DTO; #pragma warning disable CS8618 diff --git a/Wonky.Client/Pages/CatalogCountryPage.razor.cs b/Wonky.Client/Pages/CatalogCountryPage.razor.cs index cf130335..40281786 100644 --- a/Wonky.Client/Pages/CatalogCountryPage.razor.cs +++ b/Wonky.Client/Pages/CatalogCountryPage.razor.cs @@ -18,7 +18,7 @@ using Blazored.LocalStorage; using Wonky.Client.HttpInterceptors; using Microsoft.AspNetCore.Components; using Wonky.Client.Helpers; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Services; using Wonky.Entity.Requests; using Wonky.Entity.Views; diff --git a/Wonky.Client/Pages/CatalogCountryPrintPage.razor.cs b/Wonky.Client/Pages/CatalogCountryPrintPage.razor.cs index 3bb30b64..5cb6c2a9 100644 --- a/Wonky.Client/Pages/CatalogCountryPrintPage.razor.cs +++ b/Wonky.Client/Pages/CatalogCountryPrintPage.razor.cs @@ -18,7 +18,7 @@ using Blazored.LocalStorage; using Wonky.Client.HttpInterceptors; using Microsoft.AspNetCore.Components; using Wonky.Client.Helpers; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Entity.Views; #pragma warning disable CS8618 diff --git a/Wonky.Client/Pages/OfficeAdvisorReportViewPage.razor.cs b/Wonky.Client/Pages/OfficeAdvisorReportViewPage.razor.cs index f7a093e0..559d1e5c 100644 --- a/Wonky.Client/Pages/OfficeAdvisorReportViewPage.razor.cs +++ b/Wonky.Client/Pages/OfficeAdvisorReportViewPage.razor.cs @@ -20,7 +20,7 @@ using Microsoft.AspNetCore.Components; using Microsoft.JSInterop; using Wonky.Client.Helpers; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Client.Services; using Wonky.Entity.DTO; diff --git a/Wonky.Client/Pages/OfficeCountryCustomerListPage.razor.cs b/Wonky.Client/Pages/OfficeCountryCustomerListPage.razor.cs index 4e6e08a9..8cbb9a6e 100644 --- a/Wonky.Client/Pages/OfficeCountryCustomerListPage.razor.cs +++ b/Wonky.Client/Pages/OfficeCountryCustomerListPage.razor.cs @@ -17,7 +17,7 @@ using Blazored.LocalStorage; using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Services; using Wonky.Entity.DTO; using Wonky.Entity.Requests; diff --git a/Wonky.Client/Pages/OfficeOrderCreatePage.razor.cs b/Wonky.Client/Pages/OfficeOrderCreatePage.razor.cs index a7ac8253..e2c055ef 100644 --- a/Wonky.Client/Pages/OfficeOrderCreatePage.razor.cs +++ b/Wonky.Client/Pages/OfficeOrderCreatePage.razor.cs @@ -18,7 +18,7 @@ using System.Text.Json; using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Forms; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Client.OverlayCustomer; using Wonky.Client.OverlayOrderCreate; diff --git a/Wonky.Client/Pages/OfficeOrderViewPage.razor.cs b/Wonky.Client/Pages/OfficeOrderViewPage.razor.cs index 0ed2f5ca..e706ae50 100644 --- a/Wonky.Client/Pages/OfficeOrderViewPage.razor.cs +++ b/Wonky.Client/Pages/OfficeOrderViewPage.razor.cs @@ -20,7 +20,7 @@ using Blazored.LocalStorage; using Blazored.Toast.Services; using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Services; using Wonky.Entity.DTO; using Wonky.Entity.Views; diff --git a/Wonky.Client/Pages/OfficeUserAdvisorCustomerListPage.razor.cs b/Wonky.Client/Pages/OfficeUserAdvisorCustomerListPage.razor.cs index 37b635bf..211892d5 100644 --- a/Wonky.Client/Pages/OfficeUserAdvisorCustomerListPage.razor.cs +++ b/Wonky.Client/Pages/OfficeUserAdvisorCustomerListPage.razor.cs @@ -16,7 +16,7 @@ using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Services; using Wonky.Entity.DTO; using Wonky.Entity.Requests; diff --git a/Wonky.Client/Pages/OfficeUserAdvisorListPage.razor.cs b/Wonky.Client/Pages/OfficeUserAdvisorListPage.razor.cs index fe96d1b9..6fc20fb1 100644 --- a/Wonky.Client/Pages/OfficeUserAdvisorListPage.razor.cs +++ b/Wonky.Client/Pages/OfficeUserAdvisorListPage.razor.cs @@ -17,7 +17,7 @@ using Microsoft.AspNetCore.Components; using Wonky.Client.Helpers; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Entity.DTO; #pragma warning disable CS8618 diff --git a/Wonky.Client/Pages/OfficeUserAdvisorReportListPage.razor.cs b/Wonky.Client/Pages/OfficeUserAdvisorReportListPage.razor.cs index c0455960..f8ee4b7f 100644 --- a/Wonky.Client/Pages/OfficeUserAdvisorReportListPage.razor.cs +++ b/Wonky.Client/Pages/OfficeUserAdvisorReportListPage.razor.cs @@ -16,7 +16,7 @@ using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Entity.DTO; using Wonky.Entity.Views; #pragma warning disable CS8618 diff --git a/Wonky.Client/Pages/ReportPrintOrderPage.razor.cs b/Wonky.Client/Pages/ReportPrintOrderPage.razor.cs index 76747933..08b2edcc 100644 --- a/Wonky.Client/Pages/ReportPrintOrderPage.razor.cs +++ b/Wonky.Client/Pages/ReportPrintOrderPage.razor.cs @@ -19,7 +19,7 @@ using Blazored.Toast.Services; using Microsoft.AspNetCore.Components; using Microsoft.JSInterop; using Wonky.Client.Helpers; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Entity.DTO; using Wonky.Entity.Views; diff --git a/Wonky.Client/Pages/SystemUserViewEditPage.razor.cs b/Wonky.Client/Pages/SystemUserViewEditPage.razor.cs index 2b0a9515..713d6f23 100644 --- a/Wonky.Client/Pages/SystemUserViewEditPage.razor.cs +++ b/Wonky.Client/Pages/SystemUserViewEditPage.razor.cs @@ -20,7 +20,7 @@ using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Forms; using Wonky.Client.Helpers; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Entity.DTO; using Wonky.Entity.Views; #pragma warning disable CS8618 diff --git a/Wonky.Client/Pages/WarehouseOrderListPage.razor.cs b/Wonky.Client/Pages/WarehouseOrderListPage.razor.cs index 64ab7fb9..a59dcbbb 100644 --- a/Wonky.Client/Pages/WarehouseOrderListPage.razor.cs +++ b/Wonky.Client/Pages/WarehouseOrderListPage.razor.cs @@ -17,7 +17,7 @@ using Microsoft.AspNetCore.Components; using Wonky.Client.Helpers; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Entity.DTO; using Wonky.Entity.Views; diff --git a/Wonky.Client/Pages/WarehouseOrderViewPage.razor.cs b/Wonky.Client/Pages/WarehouseOrderViewPage.razor.cs index 9c87befc..88c8109e 100644 --- a/Wonky.Client/Pages/WarehouseOrderViewPage.razor.cs +++ b/Wonky.Client/Pages/WarehouseOrderViewPage.razor.cs @@ -18,7 +18,7 @@ using System.Text.Json; using Blazored.Toast.Services; using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; +using Wonky.Client.HttpRepository; using Wonky.Entity.DTO; using Wonky.Entity.Views; #pragma warning disable CS8618 diff --git a/Wonky.Client/Program.cs b/Wonky.Client/Program.cs index aae655b6..634f5452 100644 --- a/Wonky.Client/Program.cs +++ b/Wonky.Client/Program.cs @@ -24,7 +24,6 @@ using Blazored.LocalStorage; using Blazored.Toast; using Wonky.Client; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; using Wonky.Client.HttpRepository; using Wonky.Client.Services; using Wonky.Client.Shared; diff --git a/Wonky.Client/Shared/ContactModal.razor.cs b/Wonky.Client/Shared/ContactModal.razor.cs index aa63eac5..8ea9ee59 100644 --- a/Wonky.Client/Shared/ContactModal.razor.cs +++ b/Wonky.Client/Shared/ContactModal.razor.cs @@ -18,7 +18,6 @@ using System.Text.Json; using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Forms; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Client.Services; diff --git a/Wonky.Client/Shared/VatLookupDkModal.razor.cs b/Wonky.Client/Shared/VatLookupDkModal.razor.cs index 649ec5ef..8ef6d439 100644 --- a/Wonky.Client/Shared/VatLookupDkModal.razor.cs +++ b/Wonky.Client/Shared/VatLookupDkModal.razor.cs @@ -18,7 +18,6 @@ using System.Text.Json; using Blazored.Toast.Services; using Microsoft.AspNetCore.Components; using Wonky.Client.HttpInterceptors; -using Wonky.Client.HttpInterfaces; using Wonky.Client.HttpRepository; using Wonky.Client.Models; using Wonky.Client.Services;