Removing List and all the places it was used

This commit is contained in:
Eric Fleming
2019-03-01 22:07:46 -05:00
parent b8f1ac977d
commit b084d4e770
2 changed files with 7 additions and 8 deletions

View File

@@ -6,7 +6,6 @@ namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
public interface IRepository<T> where T : BaseEntity
{
T GetSingleBySpec(ISpecification<T> spec);
IEnumerable<T> List(ISpecification<T> spec);
T Add(T entity);
void Update(T entity);
void Delete(T entity);