Updating
This commit is contained in:
12
teams/Services/ITeamsRepository.cs
Normal file
12
teams/Services/ITeamsRepository.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using Teams.Entities;
|
||||
|
||||
namespace Teams.Services
|
||||
{
|
||||
public interface ITeamsRepository
|
||||
{
|
||||
Task<Team?> GetTeamAsync(int teamId);
|
||||
Task<(IEnumerable<Team>, PaginationMetadata)> GetTeamsAsync(int pageNumber, int pageSize);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user