using Common.Dtos.Common; using Common.Dtos.Season; namespace Api.Services.Interfaces; public interface ISeasonService { Task CreateAsync(CreateSeasonRequest request); Task> GetAllPagedAsync(GetSeasonsRequest request); Task GetAllAsync(); }