7.2.1 Creating an Abstract Repository; e.g. 7.4
parent
c10e333246
commit
ece061c043
|
@ -0,0 +1,14 @@
|
|||
using SportsStore.Domain.Entities;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SportsStore.Domain.Abstract
|
||||
{
|
||||
interface IProductsRepository
|
||||
{
|
||||
IQueryable<Product> Products { get; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue