Skip to content

Commit

Permalink
Add Async suffix to name
Browse files Browse the repository at this point in the history
  • Loading branch information
ardalis committed Feb 9, 2021
1 parent 9aa5a91 commit 573f10a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace PluralsightDdd.SharedKernel.Interfaces
public interface IRepository
{
Task<T> GetByIdAsync<T, TId>(TId id) where T : BaseEntity<TId>, IAggregateRoot;
Task<T> Get<T, TId>(ISpecification<T> spec) where T : BaseEntity<TId>, IAggregateRoot;
Task<T> GetAsync<T, TId>(ISpecification<T> spec) where T : BaseEntity<TId>, IAggregateRoot;

Task<List<T>> ListAsync<T, TId>() where T : BaseEntity<TId>, IAggregateRoot;
Task<List<T>> ListAsync<T, TId>(ISpecification<T> spec) where T : BaseEntity<TId>, IAggregateRoot;
Expand Down

0 comments on commit 573f10a

Please sign in to comment.