2024-05-16 13:52:54 +03:30
|
|
|
|
namespace Netina.Core.BaseServices.Abstracts;
|
2024-02-25 18:21:01 +03:30
|
|
|
|
|
|
|
|
|
|
public interface IDashboardService : IScopedDependency
|
|
|
|
|
|
{
|
|
|
|
|
|
public Task<HomeDashboardDto> GetHomeDashboardAsyncTask(CancellationToken cancellationToken = default);
|
2024-05-16 13:52:54 +03:30
|
|
|
|
public Task<OrderDashboardDto> GetOrdersDashboardAsyncTask(CancellationToken cancellationToken = default);
|
2024-02-25 18:21:01 +03:30
|
|
|
|
}
|