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

@@ -2,6 +2,7 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Webshop.Application.Services.Public.Interfaces;
namespace Webshop.Application.Services.Public

View File

@@ -7,10 +7,10 @@ using Webshop.Application.DTOs.Auth;
using Webshop.Application.DTOs.Users;
namespace Webshop.Application.Services.Public
namespace Webshop.Application.Services.Public.Interfaces
{
public interface ICategoryService
{
// Fügen Sie hier Methodensignaturen hinzu
// Fügen Sie hier Methodensignaturen hinzu
}
}

View File

@@ -1,9 +1,9 @@
// src/Webshop.Application/Services/Public/IProductService.cs
using System.Collections.Generic;
using System.Threading.Tasks;
using Webshop.Application.DTOs; // ProductDto
using Webshop.Application.DTOs.Products;
namespace Webshop.Application.Services.Public
namespace Webshop.Application.Services.Public.Interfaces
{
public interface IProductService
{

View File

@@ -2,9 +2,10 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Webshop.Application.DTOs;
using Webshop.Domain.Interfaces;
using Webshop.Domain.Entities;
using Webshop.Application.DTOs.Products;
using Webshop.Application.Services.Public.Interfaces;
namespace Webshop.Application.Services.Public