7.2.1 Creating an Abstract Repository; e.g. 7.4
This commit is contained in:
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…
x
Reference in New Issue
Block a user