Tizian.Breuch 03993211f6
All checks were successful
Branch - test - Build and Push Backend API Docker Image / build-and-push (push) Successful in 1m8s
new git
2025-10-23 14:45:24 +02:00
2025-09-25 11:47:38 +02:00
2025-10-23 14:45:24 +02:00
2025-10-10 11:12:29 +02:00
2025-10-23 12:16:22 +02:00
2025-07-21 20:17:52 +02:00
try
2025-07-23 21:08:30 +02:00
2025-07-25 10:22:28 +02:00
2025-07-22 09:03:37 +02:00

ShopSolution.sln ├───Webshop.Api │ ├───Controllers │ │ ├───Admin // Controller für Admin-Dashboard (z.B. AdminProductsController, AdminUsersController) │ │ ├───Auth // Controller für Login/Register (AuthController) │ │ ├───Customer // Controller für eingeloggte Kunden (z.B. OrdersController, ProfileController) │ │ └───Public // Controller für öffentliche/nicht authentifizierte Zugriffe (z.B. ProductsController) │ ├───appsettings.json │ ├───Dockerfile │ └───Program.cs │ ├───Webshop.Application │ ├───DTOs │ │ ├───Auth // DTOs für Authentifizierungs-Flows │ │ ├───Users // DTOs für Benutzerdetails │ │ ├───ProductDto.cs // Standard-Produkt-DTO (für öffentliche Ansicht) │ │ └───AdminProductDto.cs // Produkt-DTO mit Admin-spezifischen Details (z.B. Einkaufspreis) │ ├───Services │ │ ├───Admin // Geschäftslogik für Admin-Dashboard │ │ │ ├───AdminProductService.cs │ │ │ └───AdminUserService.cs │ │ ├───Auth // Geschäftslogik für Authentifizierung │ │ │ ├───IAuthService.cs │ │ │ └───AuthService.cs │ │ ├───Customer // Geschäftslogik für eingeloggte Kunden │ │ │ └───// CustomerOrderService.cs (Platzhalter) │ │ │ └───// CustomerProfileService.cs (Platzhalter) │ │ └───Public // Geschäftslogik für öffentliche/nicht authentifizierte Features │ │ └───ProductCatalogService.cs // (ehemals ProductService.cs) │ ├───Webshop.Domain │ ├───Entities // Ihre Kerngeschäftsobjekte (Product, Category, Customer, Order, etc.) │ │ └───Address.cs // (Adress.cs umbenannt) │ ├───Enums // Ihre Enumerationen │ ├───Interfaces // Ihre Repository-Interfaces (IProductRepository, etc.) │ └───Webshop.Infrastructure ├───Data // Ihr DbContext ├───Migrations // Von EF Core generierte Migrationsdateien └───Repositories // Ihre Repository-Implementierungen (ProductRepository etc.)

test
Description
No description provided
Readme 786 KiB
Languages
C# 90.2%
PowerShell 9.2%
HTML 0.3%
Dockerfile 0.3%