order
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
// Auto-generiert von CreateWebshopFiles.ps1
|
||||
// src/Webshop.Application/Services/Admin/IAdminOrderService.cs
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Webshop.Application.DTOs;
|
||||
using Webshop.Application.DTOs.Auth;
|
||||
using Webshop.Application.DTOs.Users;
|
||||
using Webshop.Application.DTOs.Orders;
|
||||
using Webshop.Domain.Enums;
|
||||
|
||||
|
||||
namespace Webshop.Application.Services.Admin.Interfaces
|
||||
namespace Webshop.Application.Services.Admin
|
||||
{
|
||||
public interface IAdminOrderService
|
||||
{
|
||||
// Fügen Sie hier Methodensignaturen hinzu
|
||||
Task<IEnumerable<OrderSummaryDto>> GetAllOrdersAsync();
|
||||
Task<OrderDetailDto?> GetOrderByIdAsync(Guid id);
|
||||
Task<(bool Success, string? ErrorMessage)> UpdateOrderStatusAsync(Guid id, OrderStatus newStatus);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user