12 lines
355 B
C#
12 lines
355 B
C#
using FruitBank.Common.Dtos;
|
|
using Mango.Nop.Core.Models;
|
|
|
|
namespace FruitBank.Common.Interfaces;
|
|
|
|
public interface ICustomOrderSignalREndpointCommon
|
|
{
|
|
Task<List<OrderDto>?> GetAllOrderDtos();
|
|
Task<List<OrderDto>?> GetPendingOrderDtos();
|
|
Task<List<OrderDto>?> GetAllByIds(int[] orderIds);
|
|
Task<OrderDto?> GetOrderDtoById(int orderId);
|
|
} |