2023-11-20 12:26:33 +10:00
|
|
|
|
using PARR.Constants;
|
|
|
|
|
|
using PARR.DAL.Contracts;
|
2023-10-24 10:38:21 +10:00
|
|
|
|
using PARR.DAL.Models;
|
2023-10-23 16:17:42 +10:00
|
|
|
|
|
|
|
|
|
|
namespace PARR.DAL.Services.Interfaces
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IOrderStatusService
|
|
|
|
|
|
{
|
|
|
|
|
|
IQueryable<OrderStatus> Get();
|
2023-10-24 10:38:21 +10:00
|
|
|
|
OrderStatusEnum GetOrderStatusByName(string statusName);
|
2023-10-23 16:17:42 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|