2024-04-17 16:19:43 +03:30
|
|
|
|
namespace Netina.AdminPanel.PWA.Services.RestServices;
|
2024-02-25 18:21:01 +03:30
|
|
|
|
|
|
|
|
|
|
public interface IDashboardApiRest
|
|
|
|
|
|
{
|
|
|
|
|
|
[Get("/home")]
|
|
|
|
|
|
public Task<HomeDashboardDto> GetHomeDashboardAsync([Header("Authorization")] string authorization);
|
2024-05-16 13:52:55 +03:30
|
|
|
|
[Get("/orders")]
|
|
|
|
|
|
public Task<OrderDashboardDto> GetOrdersDashboardAsync([Header("Authorization")] string authorization);
|
2024-02-25 18:21:01 +03:30
|
|
|
|
}
|