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:
Eric Fleming
2019-03-01 22:21:12 -05:00
parent 1152f4a45d
commit 8a00269ebd
7 changed files with 7 additions and 21 deletions

View File

@@ -1,10 +0,0 @@
using Microsoft.eShopWeb.ApplicationCore.Entities;
using System.Collections.Generic;
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface IRepository<T> where T : BaseEntity
{
}
}