mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 07:56:14 +00:00
15 lines
281 B
C#
15 lines
281 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using SportsStore.Domain.Entities;
|
|
|
|
namespace SportsStore.Domain.Abstract
|
|
{
|
|
public interface IProductRepository
|
|
{
|
|
IEnumerable<Product> Products { get; }
|
|
}
|
|
}
|