|
using Netina.Common.Models;
|
|
using Netina.Domain.Dtos.DashboardDtos;
|
|
|
|
namespace Netina.Core.BaseServices.Abstracts;
|
|
|
|
public interface IDashboardService : IScopedDependency
|
|
{
|
|
public Task<HomeDashboardDto> GetHomeDashboardAsyncTask(CancellationToken cancellationToken = default);
|
|
} |