Removing IRepository
- This also involved cleaning up places where IRepository was still being references in Startup - Removed unused repository from Basket service
This commit is contained in:
@@ -12,7 +12,7 @@ namespace Microsoft.eShopWeb.Infrastructure.Data
|
||||
/// https://blogs.msdn.microsoft.com/pfxteam/2012/04/13/should-i-expose-synchronous-wrappers-for-asynchronous-methods/
|
||||
/// </summary>
|
||||
/// <typeparam name="T"></typeparam>
|
||||
public class EfRepository<T> : IRepository<T>, IAsyncRepository<T> where T : BaseEntity
|
||||
public class EfRepository<T> : IAsyncRepository<T> where T : BaseEntity
|
||||
{
|
||||
protected readonly CatalogContext _dbContext;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user