KoogleApp/Koogle.Application/Interfaces/IDayService.cs

15 lines
365 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Koogle.Application.DTOs;
namespace Koogle.Application.Interfaces
{
public interface IDayService
{
Task<PagedResultDto<DaySummaryDto>> GetAllAsync(DayFilterDto filter, CancellationToken cancellationToken = default);
}
}