15 lines
320 B
C#
15 lines
320 B
C#
namespace Expose.MyIT.Shared.Models.Stateless;
|
|
|
|
public interface IServiceShopOrderController<T>
|
|
{
|
|
|
|
enum Action : int
|
|
{
|
|
All = 0
|
|
}
|
|
|
|
static string GetRouteName() => nameof(IServiceShopOrderController<T>)[1..^10];
|
|
Task<T> GetAllServiceShopOrders();
|
|
Task<T> GetServiceShopOrders(string id);
|
|
|
|
} |