12 lines
247 B
C#
12 lines
247 B
C#
using PortBlog.API.Entities;
|
|
|
|
namespace PortBlog.API.Repositories.Contracts
|
|
{
|
|
public interface ICandidateRepository
|
|
{
|
|
Task<Candidate?> GetCandidateAsync(int id);
|
|
|
|
Task<bool> CandidateExistAsync(int candidateId);
|
|
}
|
|
}
|