2024-04-17 16:19:43 +03:30
|
|
|
|
namespace Netina.AdminPanel.PWA.Services.RestServices;
|
2024-01-30 19:35:44 +03:30
|
|
|
|
|
|
|
|
|
|
public interface IBlogRestApi
|
|
|
|
|
|
{
|
|
|
|
|
|
[Get("")]
|
2024-04-25 02:48:37 +03:30
|
|
|
|
Task<GetBlogsResponseDto> ReadAll();
|
2024-01-30 19:35:44 +03:30
|
|
|
|
[Get("")]
|
2024-04-25 02:48:37 +03:30
|
|
|
|
Task<GetBlogsResponseDto> ReadAll([Query] int page);
|
2024-01-30 19:35:44 +03:30
|
|
|
|
[Get("")]
|
2024-04-25 02:48:37 +03:30
|
|
|
|
Task<GetBlogsResponseDto> ReadAll([Query] int page, [Query] string blogName);
|
2024-01-30 19:35:44 +03:30
|
|
|
|
}
|