14 lines
398 B
C#
14 lines
398 B
C#
namespace NetinaShop.AdminPanel.PWA.Services.RestServices;
|
|
|
|
public interface IProductRestApi
|
|
{
|
|
|
|
[Get("")]
|
|
Task<List<ProductSDto>> ReadAll();
|
|
[Get("")]
|
|
Task<List<ProductSDto>> ReadAll([Query] int page);
|
|
[Get("")]
|
|
Task<List<ProductSDto>> ReadAll([Query] int page, [Query] string productName);
|
|
[Get("")]
|
|
Task<List<ProductSDto>> ReadAll([Query] string productName);
|
|
} |