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
|
|
|
|
{
|
2023-12-09 09:54:34 +03:30
|
|
|
|
Task<AppDashboardPageDto> GetAppDashboardAsync(CancellationToken cancellationToken);
|
2024-05-20 22:51:01 +03:30
|
|
|
|
Task<List<AppShiftingPageDayDto>> GetShiftingPageAsync(Guid routineId,CancellationToken cancellationToken);
|
2023-10-13 16:25:34 +03:30
|
|
|
|
}
|