aufrüumen

This commit is contained in:
Tizian.Breuch
2025-07-25 15:46:31 +02:00
parent 8218b860ca
commit 9e298a0458
74 changed files with 453 additions and 3557 deletions

View File

@@ -14,6 +14,10 @@ using Microsoft.Extensions.Logging; // For ILogger
using Microsoft.OpenApi.Models; // For Swagger OpenAPI models
using Webshop.Api.SwaggerFilters; // For AuthorizeOperationFilter
using Webshop.Domain.Entities;
using Webshop.Application.Services.Admin.Interfaces;
using Webshop.Application.Services.Public.Interfaces;
using Webshop.Application.Services.Customers.Interfaces;
using Webshop.Application.Services.Customers;
var builder = WebApplication.CreateBuilder(args);
@@ -85,7 +89,7 @@ builder.Services.AddScoped<IAdminProductService, AdminProductService>();
builder.Services.AddScoped<IAdminSupplierService, AdminSupplierService>();
// CUSTOMER Services (sp<73>ter Implementierungen hinzuf<75>gen)
// builder.Services.AddScoped<CustomerOrderService>();
builder.Services.AddScoped<ICustomerService, CustomerService>();
// 5. Controller und Swagger/OpenAPI hinzuf<75>gen