2023-10-13 16:25:34 +03:30
|
|
|
|
namespace Brizco.Core.CoreServices.Abstracts;
|
|
|
|
|
|
|
2023-12-09 09:54:34 +03:30
|
|
|
|
public interface IPageService : IScopedDependency
|
2023-10-13 16:25:34 +03:30
|
|
|
|
{
|
2024-06-30 22:29:57 +03:30
|
|
|
|
Task<AppDashboardPageDto> GetAppDashboardAsync(CancellationToken cancellationToken = default);
|
|
|
|
|
|
Task<List<AppShiftingPageDayDto>> GetShiftingPageAsync(Guid routineId,CancellationToken cancellationToken = default);
|
2023-10-13 16:25:34 +03:30
|
|
|
|
}
|