12 lines
314 B
C#
12 lines
314 B
C#
using Common.Dtos.Common;
|
|
using Common.Dtos.Season;
|
|
|
|
namespace Api.Services.Interfaces;
|
|
|
|
public interface ISeasonService
|
|
{
|
|
Task<CreateSeasonResponse> CreateAsync(CreateSeasonRequest request);
|
|
Task<PagedList<SeasonDto>> GetAllPagedAsync(GetSeasonsRequest request);
|
|
Task<SeasonDto[]> GetAllAsync();
|
|
}
|