Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ardalis committed Mar 5, 2021
1 parent 4615645 commit 367b07a
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,4 @@ namespace PluralsightDdd.SharedKernel.Interfaces
public interface IReadRepository<T> : IReadRepositoryBase<T> where T : class, IAggregateRoot
{
}

//public interface IRepository
//{
// Task<T> GetByIdAsync<T, TId>(TId id) 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;

// Task<int> CountAsync<T, TId>(ISpecification<T> spec) where T : BaseEntity<TId>, IAggregateRoot;

// Task<T> AddAsync<T, TId>(T entity) where T : BaseEntity<TId>, IAggregateRoot;
// Task UpdateAsync<T, TId>(T entity) where T : BaseEntity<TId>, IAggregateRoot;
// Task DeleteAsync<T, TId>(T entity) where T : BaseEntity<TId>, IAggregateRoot;
//}
}

0 comments on commit 367b07a

Please sign in to comment.