7.2.1 Creating an Abstract Repository; e.g. 7.4

chap07
Jason Zhu 2021-08-20 12:07:09 +10:00
parent c10e333246
commit ece061c043
1 changed files with 14 additions and 0 deletions

View File

@ -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; }
}
}