Add project
This commit is contained in:
11
Api/Services/Interfaces/ISeasonService.cs
Normal file
11
Api/Services/Interfaces/ISeasonService.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user