// src/Webshop.Application/Services/Admin/IAdminUserService.cs using System.Collections.Generic; using System.Threading.Tasks; using Webshop.Application.DTOs.Users; // UserDto namespace Webshop.Application.Services.Admin { public interface IAdminUserService { Task> GetAllUsersAsync(); Task GetUserByIdAsync(string userId); // Task UpdateUserRolesAsync(string userId, List newRoles); // Beispiel für zukünftige Methode // Task DeleteUserAsync(string userId); // Beispiel für zukünftige Methode } }